From 0322644934beda4484a3fcb66352f76142b3e0a7 Mon Sep 17 00:00:00 2001 From: "Sverre H. Huseby" Date: Tue, 31 Oct 2023 10:04:02 +0100 Subject: [PATCH] use artifact pusher that actually works --- .github/workflows/release.yml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 2e4fd0e..9d94106 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -6,7 +6,7 @@ jobs: publish: runs-on: ubuntu-latest permissions: - contents: read + contents: write packages: write steps: - uses: actions/checkout@v4 @@ -19,7 +19,6 @@ jobs: env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - name: Push GitHub release artifact - uses: actions/upload-artifact@v3 + uses: softprops/action-gh-release@v1 with: - name: jar - path: target/*.jar + files: target/*.jar