Merge pull request #1320 from snowplow/release/r146 #42
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: CD | |
on: | |
push: | |
tags: | |
- 'r*' | |
jobs: | |
cd: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Extract tag version from ref | |
id: get_version | |
run: echo ::set-output name=VERSION::${GITHUB_REF/refs\/tags\//} | |
- name: is_release_tag check | |
id: tag_check | |
env: | |
RELEASE_TAG: ${{ steps.get_version.outputs.VERSION }} | |
run: | | |
./.github/scripts/is_release_tag.bash $RELEASE_TAG | |
echo ::set-output name=exit_code::$? | |
- name: Debug is_release_tag check | |
env: | |
IS_RELEASE_TAG: ${{ steps.tag_check.outputs.exit_code }} | |
run: | | |
echo "is_release_tag: $IS_RELEASE_TAG" | |
- uses: BSFishy/pip-action@v1 | |
if: steps.tag_check.outputs.exit_code == 0 | |
with: | |
packages: awscli | |
- name: Deploy | |
if: steps.tag_check.outputs.exit_code == 0 | |
env: | |
AWS_SHA_ACCESS_KEY_ID: ${{ secrets.AWS_SHA_ACCESS_KEY_ID }} | |
AWS_SHA_SECRET_ACCESS_KEY: ${{ secrets.AWS_SHA_SECRET_ACCESS_KEY }} | |
IGLU_SERVER_EU1_APIKEY: ${{ secrets.IGLU_SERVER_EU1_APIKEY }} | |
IGLU_SERVER_EU2_APIKEY: ${{ secrets.IGLU_SERVER_EU2_APIKEY }} | |
run: ./.github/scripts/push.bash |