From 97cf4b361c6c5c5599c0a6415ad2d5e0483dd406 Mon Sep 17 00:00:00 2001 From: kokodev Date: Sun, 6 Oct 2024 14:43:17 -0700 Subject: [PATCH] Update release.yaml --- .github/workflows/release.yaml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 9824cfd00..91b1507a1 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -23,16 +23,16 @@ jobs: run: yarn build:production # Adjust this command based on your build process - name: Create release directory - run: mkdir -p release + run: mkdir -p release/kokofixcomputers - name: Package the build into a tar file run: | - TAR_FILE="release/${{ github.repository }}-$(date +'%Y%m%d%H%M%S').tar.gz" - tar -czf "$TAR_FILE" -C dist . # Adjust 'dist' to your build output directory + TAR_FILE="release/kokofixcomputers/panel.tar.gz" # Set the desired filename here + tar -czf "$TAR_FILE" . # The dot (.) indicates to include everything in the current directory echo "Release created at $TAR_FILE" - name: Upload release artifact - uses: actions/upload-artifact@v3 # Updated to use v3 + uses: actions/upload-artifact@v3 with: name: release-artifact - path: release/*.tar.gz + path: release/kokofixcomputers/panel.tar.gz # Update to match the new filename