From 80c56f03627cb76ea90496b9ad9870597144f46d Mon Sep 17 00:00:00 2001 From: Ricardo Band Date: Wed, 14 Jun 2023 11:39:36 +0200 Subject: [PATCH] Update release.yml --- .github/workflows/release.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index b46e392..76c4382 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -86,7 +86,7 @@ jobs: uses: thedoctor0/zip-release@0.7.1 with: type: zip - filename: release-staging-${{ env.timestamp }}.zip + filename: ../release-staging-${{ env.timestamp }}.zip directory: public - name: Create Release uses: ncipollo/release-action@v1.12.0 @@ -94,7 +94,7 @@ jobs: tag: staging-${{ env.timestamp }} name: Website staging version ${{ env.timestamp }} body: Website staging version ${{ env.timestamp }} - artifacts: "release-staging-${{ env.timestamp }}.zip" + artifacts: release-staging-${{ env.timestamp }}.zip token: ${{ secrets.GITHUB_TOKEN }} release: @@ -114,7 +114,7 @@ jobs: uses: thedoctor0/zip-release@0.7.1 with: type: zip - filename: release-production-${{ env.timestamp }}.zip + filename: ../release-production-${{ env.timestamp }}.zip directory: public - name: Create Release uses: ncipollo/release-action@v1.12.0 @@ -123,5 +123,5 @@ jobs: tag: production-${{ env.timestamp }} name: Website production version ${{ env.timestamp }} body: Website production version ${{ env.timestamp }} - artifacts: "release-production-${{ env.timestamp }}.zip" + artifacts: release-production-${{ env.timestamp }}.zip token: ${{ secrets.GITHUB_TOKEN }}