From db79f69cb5a0e28b6ef932f4a8ac2dc622e7a42e Mon Sep 17 00:00:00 2001 From: Malys Date: Sun, 12 Jan 2025 13:22:35 +0100 Subject: [PATCH] Update main.yml again --- .github/workflows/main.yml | 15 ++++++--------- 1 file changed, 6 insertions(+), 9 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 613a378..ffd2224 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -14,17 +14,16 @@ jobs: steps: - name: Checkout code uses: actions/checkout@master - with: - fetch-depth: 0 # Fetch all tags - - - name: Create Release for Tag - id: release_tag - uses: Akryum/release-tag + - name: Create Release + id: create_release + uses: actions/create-release@latest env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: tag_name: ${{ github.ref }} - + release_name: Release ${{ github.ref }} + draft: false + prerelease: false - name: Upload binaries to release uses: svenstaro/upload-release-action@v2 with: @@ -34,5 +33,3 @@ jobs: tag: ${{ github.ref }} overwrite: true body: "Mindmap plug version: ${{ github.ref }}" - -