[WIP] push image to registry #4
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: Build and push | ||
| on: | ||
| pull_request: | ||
| permissions: | ||
| pull-requests: write | ||
| contents: write | ||
| jobs: | ||
| test-run: | ||
| runs-on: ubuntu-latest | ||
| steps: | ||
| - uses: actions/checkout@v4 | ||
| - run: echo "this is triggered" | ||
| - name: Install latest podman | ||
| run: | | ||
| bash .github/workflows/scripts/install_latest_podman.sh | ||
| - name: Build Image | ||
| id: build_image | ||
| uses: redhat-actions/buildah-build@v2 | ||
| with: | ||
| image: ${{ secret.IMAGE_NAME }} | ||
|
Check failure on line 23 in .github/workflows/build-push-image.yml
|
||
| layers: false | ||
| tags: ${{ github.event.pull_request.number }} | ||
| dockerfiles: | | ||
| ./Dockerfile | ||