Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ concurrency:
jobs:
deploy: # this can be any identifier you like
name: Deploy # This can be anything you'd like
uses: softwareforgood/reusable-github-workflows/.github/workflows/deploy-to-pantheon.yml@v0
uses: softwareforgood/reusable-github-workflows/.github/workflows/deploy-to-pantheon.yml@v1
with:
TERMINUS_SITE: terminus-site-name # put your terminus site name here
secrets:
Expand Down Expand Up @@ -107,12 +107,12 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v3
uses: actions/checkout@v4

# additional build steps

- name: Upload compiled assets
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: assets
# when these paths are downloaded in deploy-to-pantheon.yml, they'll be returned to the original locations in the tree
Expand All @@ -121,7 +121,7 @@ jobs:
deploy:
name: Deploy
needs: [build] # this is VERY important; your build needs to have completed before deploying
uses: softwareforgood/reusable-github-workflows/.github/workflows/deploy-to-pantheon.yml@v0
uses: softwareforgood/reusable-github-workflows/.github/workflows/deploy-to-pantheon.yml@v1
with:
TERMINUS_SITE: terminus-site-name
ASSETS_ARTIFACT_PATH: path/to/some/assets
Expand Down