Skip to content

Commit

Permalink
Fix Release Pipeline (#101)
Browse files Browse the repository at this point in the history
  • Loading branch information
foodprocessor committed Jan 18, 2024
1 parent fbc698f commit d7a9da0
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/publish-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -192,6 +192,10 @@ jobs:
with:
go-version: ${{ env.go }}
check-latest: true
-
name: Set Version
id: get_version
run: echo "::set-output name=VERSION::$( echo ${{github.ref_name}} | tr -d 'v' )"
- # Get cached intermediate build products
name: Restore cached Windows installer
uses: actions/cache/restore@v3
Expand All @@ -200,7 +204,6 @@ jobs:
path: build/Output/cloudfuse_${{ steps.get_version.outputs.VERSION }}_windows_amd64.exe
key: windows-cloudfuse-installer-${{ github.sha }}
fail-on-cache-miss: true
continue-on-error: false
-
name: Restore Linux compiled GUI
uses: actions/cache/restore@v3
Expand Down

0 comments on commit d7a9da0

Please sign in to comment.