From 92d4ccea58bf301b3aa52f7046c824928ae19bab Mon Sep 17 00:00:00 2001 From: Erik Smistad Date: Wed, 20 Mar 2024 12:41:09 +0100 Subject: [PATCH] Try to fix ubuntu action issue [no ci] --- .github/workflows/CI-ubuntu.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/CI-ubuntu.yml b/.github/workflows/CI-ubuntu.yml index 5f82f5563..edce5823c 100644 --- a/.github/workflows/CI-ubuntu.yml +++ b/.github/workflows/CI-ubuntu.yml @@ -130,7 +130,7 @@ jobs: - name: Upload Debian package to release if: ${{ github.event_name == 'release' }} - uses: svenstaro/upload-release-action@v2 + uses: svenstaro/upload-release-action@v2.7 with: repo_token: ${{ secrets.GITHUB_TOKEN }} file: ${{github.workspace}}/build/fast_*.deb @@ -140,7 +140,7 @@ jobs: - name: Upload archive package to release if: ${{ github.event_name == 'release' }} - uses: svenstaro/upload-release-action@v2 + uses: svenstaro/upload-release-action@v2.7 with: repo_token: ${{ secrets.GITHUB_TOKEN }} file: ${{github.workspace}}/build/fast_*.tar.xz @@ -150,7 +150,7 @@ jobs: - name: Upload Python wheel to release if: ${{ github.event_name == 'release' }} - uses: svenstaro/upload-release-action@v2 + uses: svenstaro/upload-release-action@v2.7 with: repo_token: ${{ secrets.GITHUB_TOKEN }} file: ${{github.workspace}}/build/pyFAST-*.whl