update to new "user" icon #1066
This file contains hidden or 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: Push on main (Check & Deploy) | |
| on: | |
| push: | |
| branches: | |
| - main | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| check: | |
| permissions: | |
| contents: read | |
| actions: read | |
| uses: ./.github/workflows/check.yaml | |
| build_and_deploy: | |
| needs: check | |
| permissions: | |
| contents: read | |
| actions: read | |
| id-token: 'write' # needed for using open id token to authenticate with GCP | |
| uses: ./.github/workflows/build_and_deploy.yaml | |
| with: | |
| environment: 'staging' | |
| version: latest | |
| SENTRY_RELEASE: ${{ github.sha }} | |
| secrets: | |
| SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }} | |
| SEGMENT_WRITE_KEY_OPENSOURCE: ${{ secrets.SEGMENT_WRITE_KEY_OPENSOURCE }} |