Skip to content

Commit

Permalink
Merge pull request #161 from gnosis/development
Browse files Browse the repository at this point in the history
CI fixes
  • Loading branch information
mmv08 authored May 12, 2021
2 parents 2c949fd + c058daa commit 3cf6dbc
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/devui-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,14 +73,19 @@ jobs:
if: github.ref == 'refs/heads/master'
run: aws s3 sync packages/safe-apps-developer-ui/build s3://${{ secrets.AWS_STAGING_BUCKET_NAME }}/current/safe-apps-developer-ui --delete

- name: Get dev-ui tag version
id: get_devui_version
if: startsWith(github.ref, 'refs/tags/dev-ui')
run: echo ::set-output name=VERSION::${GITHUB_REF#refs/tags/}

- name: 'Prepare safe-apps-developer-ui for deploy to Production'
if: startsWith(github.ref, 'refs/tags/dev-ui')
run: aws s3 sync packages/safe-apps-developer-ui/build s3://${{ env.STAGING_BUCKET_NAME }}/releases/${{ github.event.release.tag_name }}/safe-apps-developer-ui --delete
run: aws s3 sync packages/safe-apps-developer-ui/build s3://${{ secrets.STAGING_BUCKET_NAME }}/releases/${{ steps.get_devui_version.outputs.VERSION }}/safe-apps-developer-ui --delete

- name: 'Production deployment: Enable production deployment'
if: success() && startsWith(github.ref, 'refs/tags/dev-ui')
run: bash .github/scripts/prepare_production_deployment.sh
env:
PROD_DEPLOYMENT_HOOK_TOKEN: ${{ secrets.PROD_DEPLOYMENT_HOOK_TOKEN }}
PROD_DEPLOYMENT_HOOK_URL: ${{ secrets.PROD_DEPLOYMENT_HOOK_URL }}
VERSION_TAG: ${{ steps.get_version.outputs.VERSION }}
VERSION_TAG: ${{ steps.get_devui_version.outputs.VERSION }}

0 comments on commit 3cf6dbc

Please sign in to comment.