From 7b4598d8661f316049f648188cd7bb405d3eb7e5 Mon Sep 17 00:00:00 2001 From: everpcpc Date: Tue, 23 Jul 2024 17:50:28 +0800 Subject: [PATCH] chore: delete .github/workflows/release.yaml (#131) --- .github/workflows/release.yaml | 38 ---------------------------------- 1 file changed, 38 deletions(-) delete mode 100644 .github/workflows/release.yaml diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml deleted file mode 100644 index 959e6c8..0000000 --- a/.github/workflows/release.yaml +++ /dev/null @@ -1,38 +0,0 @@ -name: Release - -on: - push: - paths: - - 'version.go' - - '.github/workflows/release.yaml' - -jobs: - release: - runs-on: ubuntu-latest - env: - VERSION: v0.6.6 - steps: - - name: Checkout - uses: actions/checkout@v2 - - - name: Setup Go - uses: actions/setup-go@v2 - with: - go-version: '1.21' - - - name: Build - run: go build -v ./... - - - name: Get version - id: get_version - run: echo ::set-output name=VERSION::${{ env.VERSION }} - - - name: Create Release - uses: actions/create-release@v1 - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - with: - tag_name: ${{ steps.get_version.outputs.VERSION }} - release_name: Release ${{ steps.get_version.outputs.VERSION }} - draft: false - prerelease: false \ No newline at end of file