From 4c72c0e269810336886da57cc7ef3d1137ea88d0 Mon Sep 17 00:00:00 2001 From: Colin Maudry Date: Thu, 13 Nov 2025 14:59:11 +0100 Subject: [PATCH] Suppression du workflow tag release --- .github/workflows/tag-release.yaml | 29 ----------------------------- 1 file changed, 29 deletions(-) delete mode 100644 .github/workflows/tag-release.yaml diff --git a/.github/workflows/tag-release.yaml b/.github/workflows/tag-release.yaml deleted file mode 100644 index 99349cf..0000000 --- a/.github/workflows/tag-release.yaml +++ /dev/null @@ -1,29 +0,0 @@ -on: - push: - # Sequence of patterns matched against refs/tags - tags: - - 'v*' # Push events to matching v*, i.e. v1.0, v20.15.10 - -name: Auto-release d'un tag - -jobs: - build: - name: auto-release - runs-on: ubuntu-latest - steps: - - name: Checkout code - uses: actions/checkout@master - - name: Get tag message - run: echo "TAG_MESSAGE=`git show ${{ github.ref_name }} | grep '^\- '`" >> "$GITHUB_ENV" - - name: Create Release - id: create_release - uses: actions/create-release@latest - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # This token is provided by Actions, you do not need to create your own token - TAG_MESSAGE: ${{ env.TAG_MESSAGE }} - with: - tag_name: ${{ github.ref }} - release_name: ${{ github.ref_name }} - body: ${{ env.TAG_MESSAGE }} - draft: false - prerelease: false