From 16c083cdda85e10f9832f601f72b70bfcc131698 Mon Sep 17 00:00:00 2001 From: withsang Date: Sun, 17 Sep 2023 07:11:43 +0900 Subject: [PATCH] fix(actions): remove auto-creating tags --- .github/workflows/prod-release-tag.yaml | 23 ----------------------- 1 file changed, 23 deletions(-) delete mode 100644 .github/workflows/prod-release-tag.yaml diff --git a/.github/workflows/prod-release-tag.yaml b/.github/workflows/prod-release-tag.yaml deleted file mode 100644 index 2782f04..0000000 --- a/.github/workflows/prod-release-tag.yaml +++ /dev/null @@ -1,23 +0,0 @@ -# This workflow was created by Ted Park -# Source: https://medium.com/prnd/github%EC%97%90%EC%84%9C-release-tag-%EC%9E%90%EB%8F%99%EC%9C%BC%EB%A1%9C-%EB%A7%8C%EB%93%A4%EC%96%B4-%EC%A3%BC%EA%B8%B0-1%EB%B6%84%EB%A7%8C%EC%97%90-%EC%84%A4%EC%A0%95-5c09a383fb08 - -name: Create Release Tag on push to main -on: - push: - branches: - - main -jobs: - build: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v3 - - name: Extract tag version - run: echo "##[set-output name=version;]$(echo '${{ github.event.head_commit.message }}' | egrep -o '[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}')" - id: extract_version_name - - name: Create release with tag - uses: actions/create-release@v1 - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - with: - tag_name: ${{ steps.extract_version_name.outputs.version }} - release_name: ${{ steps.extract_version_name.outputs.version }}