Merge pull request #401 from asgrim/override-default-recommended-vers… #31
Workflow file for this run
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: "Nightly Docker Image Build" | |
| on: | |
| # Runs on pushes targeting the default branch | |
| push: | |
| branches: ["main"] | |
| # Allows you to run this workflow manually from the Actions tab | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| jobs: | |
| build-phar: | |
| # See build-phar.yml for a list of the permissions and why they are needed | |
| permissions: | |
| contents: read | |
| id-token: write | |
| attestations: write | |
| uses: ./.github/workflows/build-phar.yml | |
| build-and-push-docker-image: | |
| needs: build-phar | |
| # See build-and-push-docker-image.yml for a list of the permissions and why they are needed | |
| permissions: | |
| contents: read | |
| id-token: write | |
| attestations: write | |
| packages: write | |
| uses: ./.github/workflows/build-and-push-docker-image.yml | |
| with: | |
| tags: | | |
| type=raw,value=nightly-bin |