Publish rechunk to GHCR #4
This file contains 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: Publish rechunk to GHCR | |
on: | |
workflow_dispatch: | |
inputs: | |
tag: | |
description: 'The version to tag the package with:' | |
required: true | |
release: | |
types: [published] | |
permissions: | |
contents: read | |
jobs: | |
deploy_ghcr: | |
runs-on: ubuntu-24.04 | |
environment: prod | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Build Image | |
run: | | |
sudo podman build --tag 'fedora_build' . | |
- name: Upload Image | |
id: upload | |
shell: bash | |
run: | | |
if [[ -n "${{ github.event.inputs.tag }}" ]]; then | |
VERSION="${{ github.event.inputs.tag }}" | |
elif [[ -n "${{ github.event.release.tag_name }}" ]]; then | |
VERSION="${{ github.event.release.tag_name }}" | |
else | |
echo "No version tag provided" | |
exit 1 | |
fi | |
sudo skopeo copy ${{ steps.rechunk.outputs.ref }} docker://ghcr.io/hhd-dev/rechunk:latest | |
sudo skopeo copy ${{ steps.rechunk.outputs.ref }} docker://ghcr.io/hhd-dev/rechunk:stable | |
sudo skopeo copy ${{ steps.rechunk.outputs.ref }} docker://ghcr.io/hhd-dev/rechunk:$VERSION | |