Skip to content

v1.2.2

v1.2.2 #40

Workflow file for this run

name: cd·docker
on:
release:
types:
- published
concurrency:
group: docker/${{ github.event.release.tag_name }}
cancel-in-progress: true
permissions:
contents: read
packages: write
jobs:
build-and-push-image:
runs-on: ubuntu-latest
steps:
- uses: robinraju/release-downloader@v1.9
with:
releaseId: ${{ github.event.release.id }}
- name: Unpack Binaries
run: |
for filename in pkgx-*+*+*.tar.xz; do
tar xJf $filename
result="${filename#*+}"
result="${result%.tar.xz}"
mv pkgx $result
rm $filename
done
mkdir products
mv linux+x86-64 products/x86_64
mv linux+aarch64 products/aarch64
- uses: actions/checkout@v4
with:
path: src
- name: log in to github pkgs
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ github.token }}
- name: log in to docker hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKER_USER_NAME }}
password: ${{ secrets.DOCKER_TOKEN }}
- uses: docker/metadata-action@v5
id: meta
with:
images:
ghcr.io/${{ github.repository }}
pkgxdev/pkgx
tags: |
type=sha
type=ref,event=branch
type=semver,pattern=v{{version}}
type=semver,pattern=v{{major}}.{{minor}}
type=semver,pattern=v{{major}}
type=raw,value=latest
- uses: docker/setup-qemu-action@v3
- uses: docker/setup-buildx-action@v3
- name: docker/buildx
run: |
for x in $(echo "${{ steps.meta.outputs.tags }}" | tr '\n' ' ');
do tags="$tags --tag $x";
done
docker buildx build \
--push \
$tags \
--platform linux/amd64,linux/arm64 \
--file ./src/.github/Dockerfile \
.