From f1a1a2293982c1160bcc3e1b9b383b64bac43dd2 Mon Sep 17 00:00:00 2001 From: Anthony Correa Date: Thu, 6 Feb 2025 18:46:57 -0600 Subject: [PATCH] Thu Feb 6 18:46:57 CST 2025 --- .gitea/workflows/main.yml | 15 ++++----------- 1 file changed, 4 insertions(+), 11 deletions(-) diff --git a/.gitea/workflows/main.yml b/.gitea/workflows/main.yml index 3d7a416..da3f2dc 100644 --- a/.gitea/workflows/main.yml +++ b/.gitea/workflows/main.yml @@ -14,12 +14,7 @@ jobs: - name: Extract tag version number id: get_version uses: battila7/get-version-action@v2 - - run: echo ${{ steps.get_version.outputs.version-without-v }} - - run: echo ${{ github.repository }} - - run: echo ${{ gitea.repository }} - - run: echo ${{ github.event.release.tag_name }} - - run: echo ${{ secrets.GITHUB_TOKEN }} - - run: echo ${{ github.event.release.name }} + - run: echo ${{ steps.get_version.outputs.version-without-v }} ${{ github.repository }} ${{ gitea.repository }} ${{ github.event.release.tag_name }} ${{ secrets.GITHUB_TOKEN }} ${{ github.event.release.name }} # Substitute the Manifest and Download URLs in the module.json - name: Substitute Manifest and Download Links For Versioned Ones @@ -34,20 +29,18 @@ jobs: download: https://gitea.ascorrea.com/${{github.repository}}/releases/download/${{github.event.release.tag_name}}/module.zip # Create a zip file with all files required by the module to add to the release - - run: zip -r ./module.zip ./module.zip main.js module.json + - run: zip -r ./module.zip main.js module.json src # Create a release for this specific version - name: Update Release with Files id: create_version_release - uses: akkuman/gitea-release-action@v1 + uses: ncipollo/release-action@v1 with: allowUpdates: true # Set this to false if you want to prevent updating existing releases name: ${{ github.event.release.name }} draft: ${{ github.event.release.unpublished }} prerelease: ${{ github.event.release.prerelease }} token: ${{ secrets.GITHUB_TOKEN }} - files: |- - ./module.json - ./module.zip + artifacts: './module.json, ./module.zip' tag: ${{ github.event.release.tag_name }} body: ${{ github.event.release.body }} \ No newline at end of file