From 33483372f331349d333b3f581a84c934a739df5b Mon Sep 17 00:00:00 2001 From: csd4ni3l Date: Sun, 18 May 2025 16:30:54 +0200 Subject: [PATCH] remove github cli download step --- .github/workflows/main.yml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 580c8c7..c990641 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -64,16 +64,13 @@ jobs: with: path: downloads - - name: Install GitHub CLI - uses: cli/cli-action@v2 - - name: Delete Old Release (if exists) continue-on-error: true run: gh release delete latest -y env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - - name: Create New "Latest Build" Release + - name: Create the new release run: gh release create latest downloads/**/ShatterStack-*.zip --title "Latest Build" --notes "Most recent multi-platform builds of ShatterStack" --prerelease env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}