cd·docker #13
Workflow file for this run
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: 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/[email protected] | |
with: | |
releaseId: ${{ github.event.release.id }} | |
- name: Unpack Binaries | |
run: | | |
mkdir products | |
for filename in tea-*+*+*.tar.xz; do | |
tar xJf $filename | |
result="${filename#*+}" | |
result="${result%.tar.xz}" | |
mv tea products/$result | |
rm $filename | |
done | |
mv products/darwin+x86-64 products/Darwin+x86_64 | |
mv products/darwin+aarch64 products/Darwin+arm64 | |
mv products/linux+x86-64 products/Linux+x86_64 | |
mv products/linux+aarch64 products/Linux+arm64 | |
- uses: actions/checkout@v3 | |
with: | |
path: src | |
- name: log in to github pkgs | |
uses: docker/login-action@v2 | |
with: | |
registry: ghcr.io | |
username: ${{ github.actor }} | |
password: ${{ github.token }} | |
- name: log in to docker hub | |
uses: docker/login-action@v2 | |
with: | |
username: ${{ secrets.DOCKER_USER_NAME }} | |
password: ${{ secrets.DOCKER_TOKEN }} | |
- uses: docker/metadata-action@v4 | |
id: meta | |
with: | |
images: | |
ghcr.io/${{ github.repository }} | |
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@v1 | |
- uses: docker/setup-buildx-action@v1 | |
- 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 \ | |
. |