generated from carpentries/workbench-template-md
-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #11 from carpentries-incubator/update-workflows-ve…
…rsion-0.9.5 Update Workflows to Version 0.9.5
- Loading branch information
Showing
3 changed files
with
71 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
name: "Deploy to AWS" | ||
|
||
on: | ||
workflow_run: | ||
workflows: ["01 Build and Deploy Site"] | ||
types: | ||
- completed | ||
workflow_dispatch: | ||
|
||
jobs: | ||
preflight: | ||
name: "Preflight Check" | ||
runs-on: ubuntu-latest | ||
outputs: | ||
ok: ${{ steps.check.outputs.ok }} | ||
folder: ${{ steps.check.outputs.folder }} | ||
steps: | ||
- id: check | ||
run: | | ||
if [[ -z "${{ secrets.AWS_S3_BUCKET }}" || -z "${{ secrets.AWS_ACCESS_KEY_ID }}" || -z "${{ secrets.AWS_SECRET_ACCESS_KEY }}" ]]; then | ||
echo ":information_source: No site configured" >> $GITHUB_STEP_SUMMARY | ||
echo "" >> $GITHUB_STEP_SUMMARY | ||
echo "To deploy on AWS, you need the `AWS_S3_BUCKET`, `AWS_ACCESS_KEY_ID`, and `AWS_SECRET_ACCESS_KEY` secrets set up" >> $GITHUB_STEP_SUMMARY | ||
else | ||
echo "::set-output name=folder::"$(sed -E 's^.+/(.+)^\1^' <<< ${{ github.repository }}) | ||
echo "::set-output name=ok::true" | ||
fi | ||
full-build: | ||
name: "Deploy to AWS" | ||
needs: [preflight] | ||
if: ${{ needs.preflight.outputs.ok }} | ||
runs-on: ubuntu-latest | ||
steps: | ||
|
||
- name: "Checkout site folder" | ||
uses: actions/checkout@v3 | ||
with: | ||
ref: 'gh-pages' | ||
path: 'source' | ||
|
||
- name: "Deploy to Bucket" | ||
uses: jakejarvis/[email protected] | ||
with: | ||
args: --acl public-read --follow-symlinks --delete --exclude '.git/*' | ||
env: | ||
AWS_S3_BUCKET: ${{ secrets.AWS_S3_BUCKET }} | ||
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} | ||
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | ||
SOURCE_DIR: 'source' | ||
DEST_DIR: ${{ needs.preflight.outputs.folder }} | ||
|
||
- name: "Invalidate CloudFront" | ||
uses: chetan/invalidate-cloudfront-action@master | ||
env: | ||
PATHS: /* | ||
AWS_REGION: 'us-east-1' | ||
DISTRIBUTION: ${{ secrets.DISTRIBUTION }} | ||
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} | ||
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
0.12.3 | ||
0.12.3 |