You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In my projects, I often have to build and publish documentation as static websites. I typically host these files with Cloud Storage, so having an easy to use action that takes a folder in my repository and uploads it to a given bucket.
Perhaps a simplified workflow could be something like:
name: Master workflowon:
push:
branches:
- masterjobs:
build-and-publish-docs:
name: Build and publish documentationruns-on: ubuntu-lateststeps:
- uses: actions/checkout@v1
- name: Build documentationrun: | do whatever to build the documentation
- uses: ____/publish-to-gcs@v666with:
source-folder: ./generated/docs/of/doombucket-name: my-amazeballs-bucketobject-key-prefix: /the-docs/1.0.1/clear-existing-files-first: true
The text was updated successfully, but these errors were encountered:
In my projects, I often have to build and publish documentation as static websites. I typically host these files with Cloud Storage, so having an easy to use action that takes a folder in my repository and uploads it to a given bucket.
Perhaps a simplified workflow could be something like:
The text was updated successfully, but these errors were encountered: