From 9fca6f88d949f3c9da1cc26a4502f3e7f57526fc Mon Sep 17 00:00:00 2001 From: Melvin Snijders <25155102+MelvinSnijders@users.noreply.github.com> Date: Mon, 20 May 2024 12:22:02 +0200 Subject: [PATCH] ci: Update release action --- .github/workflows/release.yml | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 037623a..73e3e16 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -18,9 +18,8 @@ jobs: type: 'zip' filename: 'scouting-improvements-child-${{ github.ref_name }}.zip' - - name: Upload Release - uses: ncipollo/release-action@v1.12.0 - with: - artifacts: 'scouting-improvements-child-${{ github.ref_name }}.zip' - token: ${{ secrets.GITHUB_TOKEN }} - allowUpdates: true \ No newline at end of file + - name: Upload Release Asset + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + run: + 'gh release upload ${{ github.ref_name }} scouting-improvements-child-${{ github.ref_name }}.zip' \ No newline at end of file