Link work experiences to verified company pages (#931, v7.93.0) [cold… #316
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: Deploy | |
| on: | |
| push: | |
| branches: [main] | |
| # Manual redeploy of main from the Actions tab, e.g. to re-run a deploy | |
| # without pushing a no-op commit. | |
| workflow_dispatch: | |
| # Never run two production deploys at once; let an in-flight one finish. | |
| concurrency: | |
| group: deploy-production | |
| cancel-in-progress: false | |
| jobs: | |
| deploy: | |
| runs-on: [self-hosted, vutuv3] | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - name: Build and deploy release | |
| run: ./scripts/deploy.sh |