From 91633744f840223ff511808381c61f1079450e8e Mon Sep 17 00:00:00 2001 From: sters Date: Fri, 2 Aug 2024 18:08:30 +0900 Subject: [PATCH] add ghcr publish job in release workflow (#111) --- .github/workflows/goreleaser.yaml | 30 ---------------- .github/workflows/release.yaml | 60 +++++++++++++++++++++++++++++++ 2 files changed, 60 insertions(+), 30 deletions(-) delete mode 100644 .github/workflows/goreleaser.yaml create mode 100644 .github/workflows/release.yaml diff --git a/.github/workflows/goreleaser.yaml b/.github/workflows/goreleaser.yaml deleted file mode 100644 index dd8378d..0000000 --- a/.github/workflows/goreleaser.yaml +++ /dev/null @@ -1,30 +0,0 @@ -name: goreleaser - -on: - push: - tags: - - '*' - -env: - GO_VERSION: "~1.21" - -jobs: - goreleaser: - name: Release pre-build binary - runs-on: ubuntu-latest - steps: - - name: Checkout code - uses: actions/checkout@v3 - with: - fetch-depth: 0 - - name: Set up Go - uses: actions/setup-go@v3 - with: - go-version: ${{ env.GO_VERSION }} - - name: Run GoReleaser - uses: goreleaser/goreleaser-action@v4 - with: - version: latest - args: release --clean - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml new file mode 100644 index 0000000..16204e1 --- /dev/null +++ b/.github/workflows/release.yaml @@ -0,0 +1,60 @@ +name: release + +on: + push: + tags: + - '*' + +env: + GO_VERSION: "~1.21" + +jobs: + goreleaser: + name: Release pre-build binary + runs-on: ubuntu-latest + steps: + - name: Checkout code + uses: actions/checkout@v4 + with: + fetch-depth: 0 + - name: Set up Go + uses: actions/setup-go@v3 + with: + go-version: ${{ env.GO_VERSION }} + - name: Run GoReleaser + uses: goreleaser/goreleaser-action@v4 + with: + version: latest + args: release --clean + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + + # https://docs.github.com/en/packages/managing-github-packages-using-github-actions-workflows/publishing-and-installing-a-package-with-github-actions#upgrading-a-workflow-that-accesses-a-registry-using-a-personal-access-token + build-and-push-ghcr: + name: Build and Push GHCR + runs-on: ubuntu-latest + permissions: + contents: read + packages: write + env: + IMAGE_NAME: wrench + steps: + - name: Checkout code + uses: actions/checkout@v4 + with: + fetch-depth: 0 + - name: Build image + run: docker build . --file Dockerfile --tag $IMAGE_NAME --label "runnumber=${GITHUB_RUN_ID}" + - name: Log in to registry + run: echo "${{ secrets.GITHUB_TOKEN }}" | docker login ghcr.io -u ${{ github.actor }} --password-stdin + - name: Push image + run: | + IMAGE_ID=ghcr.io/${{ github.repository_owner }}/$IMAGE_NAME + IMAGE_ID=$(echo $IMAGE_ID | tr '[A-Z]' '[a-z]') + VERSION=$(echo "${{ github.ref }}" | sed -e 's,.*/\(.*\),\1,') + [[ "${{ github.ref }}" == "refs/tags/"* ]] && VERSION=$(echo $VERSION | sed -e 's/^v//') + [ "$VERSION" == "main" ] && VERSION=latest + echo IMAGE_ID=$IMAGE_ID + echo VERSION=$VERSION + docker tag $IMAGE_NAME $IMAGE_ID:$VERSION + docker push $IMAGE_ID:$VERSION