release the fix #3
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: Release Trow | |
on: | |
push: | |
tags: | |
- "v*.*.*" | |
jobs: | |
release-trow: | |
outputs: | |
container-image: ${{ steps.build-images.outputs.container-image }} | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
packages: write | |
id-token: write | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Login to GitHub Container Registry | |
uses: docker/login-action@v2 | |
with: | |
registry: ghcr.io | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v2 | |
with: | |
platforms: linux/amd64,linux/arm64 | |
- name: Check tag and Cargo.toml version match | |
run: | | |
FROM_CARGO="v$(sed '/^version = */!d; s///;q' Cargo.toml | sed s/\"//g)" | |
FROM_TAG="${GITHUB_REF#refs/tags/}" | |
if [ "$FROM_CARGO" != "$FROM_TAG" ]; then | |
echo "Versions do not match: $FROM_CARGO and $FROM_TAG" | |
exit 1 | |
fi | |
- name: Build and push multi-arch image | |
id: build-images | |
run: ./docker/multi-arch.sh |