.github/workflows/deploy_cloud.yaml #111
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
on: | |
release: | |
types: | |
- published | |
jobs: | |
deploy: | |
if: startsWith(github.event.release.tag_name, 'core_') | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: core | |
concurrency: deploy-group | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: superfly/flyctl-actions/setup-flyctl@master | |
- run: flyctl deploy --remote-only --build-arg SENTEY_KEY=${{ secrets.SENTEY_KEY }} --build-arg OPENREPLAY_KEY=${{ secrets.OPENREPLAY_KEY }} --build-arg COMMIT=${GITHUB_SHA} | |
env: | |
FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN }} |