Ein leeres Media Kit sagt der Maschine, dass es nichts zu holen gibt … #1160
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 |