Upgrade par2-turbo to v1.2.0 (#478) #321
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: docker build | |
on: | |
push: | |
branches: | |
- develop | |
- main | |
tags: | |
- "v*" | |
workflow_dispatch: | |
env: | |
REGISTRY_IMAGE: nzbgetcom/nzbget | |
jobs: | |
build: | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- platform: linux/amd64 | |
runner: ubuntu-24.04 | |
- platform: linux/arm/v7 | |
runner: ubuntu-24.04 | |
- platform: linux/arm64 | |
runner: ubuntu-24.04 | |
runs-on: ${{ matrix.runner }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Prepare | |
id: prepare | |
run: | | |
platform=${{ matrix.platform }} | |
echo "platform-slug=${platform//\//-}" >> $GITHUB_OUTPUT | |
- name: Login to Docker Hub | |
uses: docker/login-action@v3 | |
with: | |
username: ${{ secrets.DOCKERHUB_USERNAME }} | |
password: ${{ secrets.DOCKERHUB_TOKEN }} | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Build and push by digest | |
id: build | |
uses: docker/build-push-action@v6 | |
env: | |
DOCKER_BUILD_SUMMARY: false | |
with: | |
context: . | |
file: docker/Dockerfile | |
platforms: ${{ matrix.platform }} | |
provenance: false | |
outputs: "type=image,oci-mediatypes=false,name=${{ env.REGISTRY_IMAGE }},push-by-digest=true,name-canonical=true,push=true" | |
build-args: | | |
"NZBGET_RELEASE=${{ github.ref_name }}" | |
"MAKE_JOBS=4" | |
- name: Export digest | |
run: | | |
rm -rf digests | |
mkdir -p digests | |
digest="${{ steps.build.outputs.digest }}" | |
touch "digests/${digest#sha256:}" | |
- name: Upload digest | |
uses: actions/upload-artifact@v4 | |
with: | |
name: digests-${{ steps.prepare.outputs.platform-slug }} | |
path: digests/* | |
if-no-files-found: error | |
retention-days: 1 | |
merge: | |
runs-on: ubuntu-24.04 | |
needs: build | |
permissions: | |
packages: write | |
steps: | |
- name: Download digests | |
uses: actions/download-artifact@v4 | |
with: | |
path: digests | |
pattern: digests-* | |
merge-multiple: true | |
- name: Login to Docker Hub | |
uses: docker/login-action@v3 | |
with: | |
username: ${{ secrets.DOCKERHUB_USERNAME }} | |
password: ${{ secrets.DOCKERHUB_TOKEN }} | |
- name: Login to GitHub Container Registry | |
uses: docker/login-action@v3 | |
with: | |
registry: ghcr.io | |
username: ${{ github.repository_owner }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Generate image tag | |
id: gen-tag | |
run: | | |
case $GITHUB_REF_NAME in | |
develop) | |
TAG="testing" | |
;; | |
main) | |
TAG="latest" | |
;; | |
refs/tags/*) | |
TAG="${GITHUB_REF/refs\/tags\//}" | |
;; | |
*) | |
TAG="${GITHUB_REF_NAME/\//-}" | |
;; | |
esac | |
echo "tag=$TAG" >> $GITHUB_OUTPUT | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Create manifest list, push and inspect | |
run: | | |
cd digests | |
docker manifest create ${{ env.REGISTRY_IMAGE }}:${{ steps.gen-tag.outputs.tag }} $(printf -- '--amend ${{ env.REGISTRY_IMAGE }}@sha256:%s ' *) | |
docker manifest push ${{ env.REGISTRY_IMAGE }}:${{ steps.gen-tag.outputs.tag }} | |
docker buildx imagetools inspect ${{ env.REGISTRY_IMAGE }}:${{ steps.gen-tag.outputs.tag }} | |
if [[ "$GITHUB_REF_NAME" == "develop" ]] || [[ "$GITHUB_REF_NAME" == "main" ]] || [[ $GITHUB_REF == 'refs/tags/'* ]]; then | |
docker buildx imagetools create -t ghcr.io/${{ env.REGISTRY_IMAGE }}:${{ steps.gen-tag.outputs.tag }} ${{ env.REGISTRY_IMAGE }}:${{ steps.gen-tag.outputs.tag }} | |
docker buildx imagetools inspect ghcr.io/${{ env.REGISTRY_IMAGE }}:${{ steps.gen-tag.outputs.tag }} | |
fi | |
- name: Update Docker Hub Description | |
if: github.ref_name == 'main' | |
uses: peter-evans/dockerhub-description@v4 | |
with: | |
username: ${{ secrets.DOCKERHUB_USERNAME }} | |
password: ${{ secrets.DOCKERHUB_TOKEN }} | |
repository: ${{ env.REGISTRY_IMAGE }} | |
readme-filepath: ./docker/README.md | |
- name: Cleanup ghcr.io from outdated images | |
uses: miklinux/ghcr-cleanup-action@v1 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
package-owner: nzbgetcom | |
package-name: nzbget | |
delete-orphans: true | |
dry-run: false |