From 9b9dcb4deb8195f91bb711948bb96c069f5bca53 Mon Sep 17 00:00:00 2001 From: Ryo Takaishi Date: Mon, 1 Jul 2024 17:52:01 +0900 Subject: [PATCH] update --- .github/workflows/tagpr.yml | 26 -------------------------- 1 file changed, 26 deletions(-) diff --git a/.github/workflows/tagpr.yml b/.github/workflows/tagpr.yml index 8758cc7..6544e79 100644 --- a/.github/workflows/tagpr.yml +++ b/.github/workflows/tagpr.yml @@ -3,38 +3,12 @@ on: push: branches: ["main"] -permissions: - contents: write - pull-requests: write - repository-projects: write - jobs: tagpr: runs-on: ubuntu-latest - outputs: - tagpr-tag: ${{ steps.run-tagpr.outputs.tag }} steps: - uses: actions/checkout@v4 - id: run-tagpr uses: Songmu/tagpr@v1 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - - release: - needs: tagpr - if: needs.tagpr.outputs.tagpr-tag != '' - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - - run: git fetch --force --tags - - name: Set up Go - uses: actions/setup-go@v5 - with: - go-version: 1.21 - - name: Run GoReleaser - uses: goreleaser/goreleaser-action@v2 - with: - version: latest - args: release --clean - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}