From 0c9c7f7ab9c4ff2dba6b55705b099fcb283627db Mon Sep 17 00:00:00 2001 From: Nymph <106388323+0xlilim@users.noreply.github.com> Date: Wed, 28 May 2025 18:57:33 +0900 Subject: [PATCH] release --- .github/workflows/go.yml | 53 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 53 insertions(+) create mode 100644 .github/workflows/go.yml diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml new file mode 100644 index 00000000..04bff84e --- /dev/null +++ b/.github/workflows/go.yml @@ -0,0 +1,53 @@ +name: Release +on: + push: + tags: + - "*" + +concurrency: + group: release-${{ github.ref }} + cancel-in-progress: true + +permissions: + actions: write # Allow canceling in-progress runs + contents: read # Read access to the repository + packages: write # Write access to the container registry + +jobs: + docker: + name: Docker Release + runs-on: ubuntu-latest + steps: + - name: Check out the repo + uses: actions/checkout@v4 + + - name: Docker Metadata + id: meta + uses: docker/metadata-action@v5 + with: + images: ghcr.io/${{ github.repository }} + tags: | + type=semver,pattern={{version}} + + - name: Set up QEMU + uses: docker/setup-qemu-action@v3 + + - name: Set up Docker Buildx + uses: docker/setup-buildx-action@v3 + + - name: Log in to ghcr.io + uses: docker/login-action@v3 + with: + registry: ghcr.io + username: ${{ github.actor }} + password: ${{ secrets.GITHUB_TOKEN }} + + - name: Build and push Docker image + uses: docker/build-push-action@v5 + with: + context: . + file: ./Dockerfile + push: true + tags: ${{ steps.meta.outputs.tags }} + labels: ${{ steps.meta.outputs.labels }} + platforms: linux/amd64, linux/arm64