ci: fix docker tags meta action (#5054)

* ci: fix docker tags meta action

* chore: revert to dashpay namespace
This commit is contained in:
strophy 2022-10-20 19:16:43 +11:00 committed by GitHub
parent 2fbf76368b
commit 1d5bdbc724
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -7,48 +7,67 @@ on:
jobs: jobs:
release: release:
name: Release to Docker Hub name: Release to Docker Hub
runs-on: ubuntu-20.04 runs-on: ubuntu-22.04
steps: steps:
- name: Checkout - name: Checkout
uses: actions/checkout@v2 uses: actions/checkout@v2
- name: Set up QEMU - name: Set up QEMU
uses: docker/setup-qemu-action@v1 uses: docker/setup-qemu-action@v2
- name: Set up Docker Buildx - name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1 uses: docker/setup-buildx-action@v2
- name: Login to DockerHub - name: Login to DockerHub
uses: docker/login-action@v1 uses: docker/login-action@v2
with: with:
username: ${{ secrets.DOCKERHUB_USERNAME }} username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }} password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Docker meta - name: Set raw tag
id: get_tag
run: |
TAG=${{ github.event.release.tag_name }}
echo "build_tag=${TAG#v}" >> $GITHUB_OUTPUT
- name: Set suffix
uses: actions/github-script@v6
id: suffix
with:
result-encoding: string
script: |
const fullTag = '${{ github.event.release.tag_name }}';
if (fullTag.includes('-')) {
const [, fullSuffix] = fullTag.split('-');
const [suffix] = fullSuffix.split('.');
return `-${suffix}`;
} else {
return '';
}
- name: Set Docker tags and labels
id: docker_meta id: docker_meta
uses: crazy-max/ghaction-docker-meta@v2 uses: docker/metadata-action@v4
with: with:
images: dashpay/dashd images: dashpay/dashd
tags: | tags: |
type=match,pattern=v(\d+.\d+.\d+.\d+),group=1,enable=${{ !contains(github.event.release.tag_name, '-rc') }} type=match,pattern=v(\d+),group=1
type=match,pattern=v(\d+.\d+.\d+),group=1,enable=${{ !contains(github.event.release.tag_name, '-rc') }} type=match,pattern=v(\d+.\d+),group=1
type=match,pattern=v(\d+.\d+),group=1,enable=${{ !contains(github.event.release.tag_name, '-rc') }} type=match,pattern=v(\d+.\d+.\d+),group=1
type=raw,value=latest,enable=${{ !contains(github.event.release.tag_name, '-rc') }} type=match,pattern=v(.*),group=1,suffix=
type=match,pattern=v(.*),group=1,latest=false,enable=${{ contains(github.event.release.tag_name, '-rc') }}
type=raw,value=latest-dev,enable=${{ contains(github.event.release.tag_name, '-rc') }}
flavor: | flavor: |
latest=false suffix=${{ steps.suffix.outputs.result }},onlatest=true
- name: Build and push - name: Build and push
id: docker_build id: docker_build
uses: docker/build-push-action@v2 uses: docker/build-push-action@v3
with: with:
context: ./contrib/containers/deploy context: ./contrib/containers/deploy
file: ./contrib/containers/deploy/Dockerfile.GitHubActions.Release file: ./contrib/containers/deploy/Dockerfile.GitHubActions.Release
push: true push: true
tags: ${{ steps.docker_meta.outputs.tags }} tags: ${{ steps.docker_meta.outputs.tags }}
labels: ${{ steps.docker_meta.outputs.labels }} labels: ${{ steps.docker_meta.outputs.labels }}
build-args: TAG=${{ steps.docker_meta.outputs.version }} build-args: TAG=${{ steps.get_tag.outputs.build_tag }}
cache-from: type=gha cache-from: type=gha
cache-to: type=gha,mode=max cache-to: type=gha,mode=max
platforms: linux/amd64,linux/arm64 platforms: linux/amd64,linux/arm64