We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b6aed97 commit 5c05d83Copy full SHA for 5c05d83
.github/workflows/build.yml
@@ -73,6 +73,13 @@ jobs:
73
registry: ghcr.io
74
username: ${{ github.actor }}
75
password: ${{ secrets.GITHUB_TOKEN }}
76
+
77
+ - name: Upload OCI image as latest
78
+ if: github.event_name == 'push' && github.ref == 'refs/heads/master'
79
+ run: |
80
+ echo "${{ secrets.GITHUB_TOKEN }}" | podman login ghcr.io -u ${{ github.actor }} --password-stdin
81
+ podman push localhost/nvidia-oci-f${{ matrix.fedora_version}} \
82
+ "docker://ghcr.io/${{ github.repository }}:latest-f${{ matrix.fedora_version }}-${{ matrix.arch }}"
83
84
- name: Generate artifact attestation
85
uses: actions/attest-build-provenance@v3
0 commit comments