Skip to content

Commit

Permalink
fix: maintain oci image version from upstream (#76)
Browse files Browse the repository at this point in the history
  • Loading branch information
marcoceppi committed Mar 25, 2023
1 parent b45001b commit f0537de
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -296,7 +296,14 @@ jobs:
fi
# DEBUG: get character count of key
wc -c certs/private_key.priv
- name: Get current version
id: labels
run: |
docker pull ghcr.io/ublue-os/${{ matrix.image_name }}-main:${{ matrix.major_version }}
ver=$(docker inspect ghcr.io/ublue-os/${{ matrix.image_name }}-main:${{ matrix.major_version }} | jq -r '.[].Config.Labels["org.opencontainers.image.version"]')
echo "VERSION=$ver" >> $GITHUB_OUTPUT
# Build metadata
- name: Image Metadata
uses: docker/metadata-action@v4
Expand All @@ -307,6 +314,7 @@ jobs:
labels: |
org.opencontainers.image.title=${{ env.IMAGE_NAME }}
org.opencontainers.image.description=ublue-os ${{ matrix.image_name }} with Nvidia drivers added
org.opencontainers.image.version=${{ steps.labels.outputs.VERSION }}
io.artifacthub.package.readme-url=https://github.com/raw/${{ github.repository }}/main/README.md
io.artifacthub.package.logo-url=https://github.com/avatars/u/1728152?s=200&v=4
# Build image using Buildah action
Expand Down

0 comments on commit f0537de

Please sign in to comment.