From 8471091fbc91bbc395329d8196658504e3c880a3 Mon Sep 17 00:00:00 2001 From: Dethrace Labs Date: Sat, 17 Sep 2022 06:43:36 +1200 Subject: [PATCH] fix on tag workflow --- .github/workflows/on_tag.yaml | 32 ++++++++++++++++---------------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/.github/workflows/on_tag.yaml b/.github/workflows/on_tag.yaml index f2beb613..c56d2066 100644 --- a/.github/workflows/on_tag.yaml +++ b/.github/workflows/on_tag.yaml @@ -8,19 +8,19 @@ jobs: create-release: #needs: [build-linux, build-macos, build-windows] #if: startsWith(github.ref, 'refs/tags/') - runs-on: ubuntu-latest - steps: - # - name: Fetch build artifacts - # uses: actions/download-artifact@v1 - # with: - # name: artifacts - - name: Create release - id: create-release - uses: actions/create-release@v1 - with: - draft: false - prerelease: false - release_name: ${{ github.ref_name}} - tag_name: ${{ github.ref }} - env: - GITHUB_TOKEN: ${{ github.token }} \ No newline at end of file + runs-on: ubuntu-latest + steps: + # - name: Fetch build artifacts + # uses: actions/download-artifact@v1 + # with: + # name: artifacts + - name: Create release + id: create-release + uses: actions/create-release@v1 + with: + draft: false + prerelease: false + release_name: ${{ github.ref_name}} + tag_name: ${{ github.ref }} + env: + GITHUB_TOKEN: ${{ github.token }} \ No newline at end of file