Merge pull request #401 from n0th1ng-else/logs #66
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
name: Main CI | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
scan: | |
uses: ./.github/workflows/scan.yml | |
secrets: inherit | |
prerelease: | |
needs: [scan] | |
uses: ./.github/workflows/prerelease.yml | |
secrets: inherit | |
deploy: | |
needs: [prerelease] | |
uses: ./.github/workflows/deploy.yml | |
secrets: inherit | |
with: | |
version: ${{ needs.prerelease.outputs.version }} | |
sha: ${{ github.sha }} | |
# Enable if you want to test on one environment | |
# servers: '["Production β"]' |