Use buildx for multi-platform images

Use buildx for multi-platform images
This commit is contained in:
Kroese 2023-05-25 03:18:34 +02:00 committed by GitHub
commit d67330f128

View File

@ -25,103 +25,108 @@ jobs:
permissions: permissions:
packages: write packages: write
contents: read contents: read
steps:
- uses: actions/checkout@v3
-
name: Build the Docker image
run: |
docker build . \
--file Dockerfile \
--build-arg "BUILD_ARG=${GITHUB_RUN_ID}" \
--build-arg "VERSION_ARG=${{ vars.MAJOR }}.${{ vars.MINOR }}" \
--build-arg "DATE_ARG=${{ github.event.repository.updated_at }}" \
--tag "${{ github.repository }}:latest" \
--tag "${{ github.repository }}:${{ vars.MAJOR }}.${{ vars.MINOR }}" \
--tag "ghcr.io/${{ github.repository }}:latest" \
--tag "ghcr.io/${{ github.repository }}:${{ vars.MAJOR }}.${{ vars.MINOR }}"
-
name: Login to Docker Hub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
-
name: Push to DockerHub
run: |
docker push "${{ github.repository }}:${{ vars.MAJOR }}.${{ vars.MINOR }}" &&\
docker push "${{ github.repository }}:latest"
-
name: Login to GitHub Container Registry
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
-
name: Push to Github Container Registry
run: |
docker push "ghcr.io/${{ github.repository }}:${{ vars.MAJOR }}.${{ vars.MINOR }}" && \
docker push "ghcr.io/${{ github.repository }}:latest"
release:
needs: build
name: Release
runs-on: ubuntu-latest
permissions:
contents: write
steps: steps:
- uses: actions/checkout@v3 -
with: name: Set up Docker Buildx
fetch-depth: 0 uses: docker/setup-buildx-action@v2
- -
name: Get previous tag name: Checkout
id: previousTag uses: actions/checkout@v3
run: | with:
name=$(git --no-pager tag --sort=creatordate --merged ${{ github.ref_name }} | tail -2 | head -1) fetch-depth: 0
echo "previousTag: $name" -
echo "previousTag=$name" >> $GITHUB_ENV name: Prepare Docker build
- id: prepare
name: Generate changelog run: |
id: changelog
uses: requarks/changelog-action@v1 PLATFORMS="linux/amd64,linux/arm64"
with: VERSION="${{ vars.MAJOR }}.${{ vars.MINOR }}"
token: ${{ github.token }}
fromTag: ${{ github.ref_name }} TAGS=()
toTag: ${{ env.previousTag }} TAGS=("${{ github.repository }}:latest")
writeToFile: false TAGS+=("${{ github.repository }}:${VERSION}")
- TAGS+=("ghcr.io/${{ github.repository }}:latest")
name: Create a release TAGS+=("ghcr.io/${{ github.repository }}:${VERSION}")
uses: action-pack/github-release@v2
env: echo "tags=${TAGS[@]}" >> $GITHUB_OUTPUT
GITHUB_TOKEN: ${{ secrets.REPO_ACCESS_TOKEN }} echo "version=${VERSION}" >> $GITHUB_OUTPUT
with: echo "docker_platforms=${PLATFORMS}" >> $GITHUB_OUTPUT
tag: "v${{ vars.MAJOR }}.${{ vars.MINOR }}" echo "build_date=$(date -u +'%Y-%m-%dT%H:%M:%SZ')" >> $GITHUB_OUTPUT
title: "v${{ vars.MAJOR }}.${{ vars.MINOR }}" -
body: | name: Login into Docker Hub
## Changelog :eyes: uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
-
name: Login to GitHub Container Registry
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
-
name: Build Docker image
run: |
TAGS=(${{ steps.prepare.outputs.tags }})
${{ steps.changelog.outputs.changes }} echo "Build date: ${{ steps.prepare.outputs.build_date }}"
echo "Docker platform: ${{ steps.prepare.outputs.docker_platforms }}"
echo "Tags: ${{ steps.prepare.outputs.tags }}"
**Full Changelog**: https://github.com/${{ github.repository }}/compare//${{ env.previousTag }}...v${{ vars.MAJOR }}.${{ vars.MINOR }} docker buildx build --platform ${{ steps.prepare.outputs.docker_platforms }} \
- --output "type=image,push=true" \
name: Increment version variable --progress=plain \
uses: action-pack/bump@v2 --build-arg "BUILD_ARG=${GITHUB_RUN_ID}" \
with: --build-arg "VERSION_ARG=${{ steps.prepare.outputs.version }}" \
token: ${{ secrets.REPO_ACCESS_TOKEN }} --build-arg "DATE_ARG=${{ steps.prepare.outputs.build_date }}" \
--build-arg "VCS_REF=${GITHUB_SHA::8}" \
$(printf "%s" "${TAGS[@]/#/ --tag }" ) .
-
name: Clear Docker credentials
run: |
rm -f ${HOME}/.docker/config.json
-
name: Get previous tag
id: previousTag
run: |
name=$(git --no-pager tag --sort=creatordate --merged ${{ github.ref_name }} | tail -1)
echo "previousTag: $name"
echo "previousTag=$name" >> $GITHUB_ENV
-
name: Generate changelog
id: changelog
uses: requarks/changelog-action@v1
with:
token: ${{ github.token }}
fromTag: ${{ github.ref_name }}
toTag: ${{ env.previousTag }}
writeToFile: false
reverseOrder: true
includeInvalidCommits: true
excludeTypes: "docs,build,chore"
-
name: Create a release
uses: action-pack/github-release@v2
env:
GITHUB_TOKEN: ${{ secrets.REPO_ACCESS_TOKEN }}
with:
tag: "v${{ steps.prepare.outputs.version }}"
title: "v${{ steps.prepare.outputs.version }}"
body: |
${{ steps.changelog.outputs.changes }}
mirror: **Full Changelog**: https://github.com/${{ github.repository }}/compare//${{ env.previousTag }}...v${{ steps.prepare.outputs.version }}
name: Mirror -
runs-on: ubuntu-latest name: Increment version variable
permissions: uses: action-pack/bump@v2
contents: read with:
steps: token: ${{ secrets.REPO_ACCESS_TOKEN }}
- uses: actions/checkout@v3 -
with: name: Push to Gitlab mirror
fetch-depth: 0 uses: action-pack/gitlab-sync@v3
- with:
name: Push to Gitlab mirror url: ${{ secrets.GITLAB_URL }}
uses: action-pack/gitlab-sync@v3 token: ${{ secrets.GITLAB_TOKEN }}
with: username: ${{ secrets.GITLAB_USERNAME }}
url: ${{ secrets.GITLAB_URL }}
token: ${{ secrets.GITLAB_TOKEN }}
username: ${{ secrets.GITLAB_USERNAME }}