Skip to content

Release v0.3.3

Release v0.3.3 #26

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