Merge pull request #399 from Zuehlke/fix-pipeline #126
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
| # run build on master brunch. build docker image and push to docker hub | |
| name: master | |
| on: | |
| workflow_dispatch: | |
| push: | |
| branches: | |
| - master | |
| tags: | |
| - '*' | |
| permissions: | |
| contents: read | |
| packages: write | |
| jobs: | |
| build-and-push: | |
| uses: ./.github/workflows/build-and-push.yml | |
| with: | |
| push_image: true |