From 757dddd66e27ebdb6606fba520c1f04b1ff649d6 Mon Sep 17 00:00:00 2001 From: Zach Morris Date: Fri, 3 Jan 2025 09:49:33 -0800 Subject: [PATCH] Update release_with_new_db.yml Update release_with_new_db.yml --- .github/workflows/release_with_new_db.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release_with_new_db.yml b/.github/workflows/release_with_new_db.yml index f18e8fb..53c5428 100644 --- a/.github/workflows/release_with_new_db.yml +++ b/.github/workflows/release_with_new_db.yml @@ -12,7 +12,7 @@ on: - No push: tags: - - 'release newdb v*' + - 'v*' jobs: build-and-release: runs-on: ubuntu-latest @@ -36,7 +36,7 @@ jobs: uses: thedoctor0/zip-release@0.7.6 with: type: 'zip' - filename: 'plugin.program.iagl-${{ steps.getxml.outputs.info }}.zip' + filename: 'plugin.program.iagl-${{ steps.get_version.outputs.info }}.zip' exclusions: '*.git* /*node_modules/* .editorconfig *.xlsx *iagl_backup.db.zip' # Step 4: Upload the release @@ -44,5 +44,6 @@ jobs: id: upload_release uses: ncipollo/release-action@v1.14.0 with: - artifacts: 'plugin.program.iagl-${{ steps.getxml.outputs.info }}.zip' + artifacts: 'plugin.program.iagl-${{ steps.get_version.outputs.info }}.zip' + name: 'plugin.program.iagl-${{ steps.get_version.outputs.info }}' token: ${{ secrets.GITHUB_TOKEN }}