Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion .github/workflows/dockerpush.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
with:
submodules: recursive
fetch-depth: 0
Expand All @@ -20,13 +20,15 @@ jobs:
make minidocker docker

- name: Log in to the GitHub Container registry
if: startsWith(github.ref, 'refs/tags/')
uses: redhat-actions/podman-login@v1
with:
registry: ghcr.io/jas88
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Push mini-container to GitHub Container Repository
if: startsWith(github.ref, 'refs/tags/')
id: push-mini-to-ghcr
uses: redhat-actions/push-to-registry@v2
with:
Expand All @@ -35,6 +37,7 @@ jobs:
registry: ghcr.io/jas88

- name: Push full stack container to GitHub Container Repository
if: startsWith(github.ref, 'refs/tags/')
id: push-full-to-ghcr
uses: redhat-actions/push-to-registry@v2
with:
Expand Down