Bump release version to 0.3.7 (#233) #31
Workflow file for this run
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
name: Publish | |
on: | |
push: | |
tags: ["*"] | |
branches: ["bootstrapper"] | |
jobs: | |
# The publish job will publish the bootstrap-templates directory to the correct S3 Bucket | |
publish: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@master | |
- uses: jakejarvis/s3-sync-action@master | |
with: | |
args: --acl private --follow-symlinks | |
env: | |
# Credentials for this workflow are provisioned in the `terraform` directory | |
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} | |
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | |
AWS_S3_BUCKET: truss-cli-global-config | |
AWS_REGION: us-east-2 | |
SOURCE_DIR: bootstrap-templates | |
DEST_DIR: bootstrap-templates |