Skip to content

Commit 0599149

Browse files
committed
fix ref_name variable
1 parent e195611 commit 0599149

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

.github/workflows/release.yaml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -28,17 +28,17 @@ jobs:
2828
dotnet publish -r win10-arm64 -o win10-arm64
2929
dotnet publish -r osx-x64 -o osx-x64
3030
dotnet publish -r osx-arm64 -o osx-arm64
31-
tar -czf kaniko-remote-${{ env.github.ref_name }}-linux-x64.tar.gz -C ./linux-x64/ .
32-
tar -czf kaniko-remote-${{ env.github.ref_name }}-linux-musl-x64.tar.gz -C ./linux-musl-x64/ .
33-
tar -czf kaniko-remote-${{ env.github.ref_name }}-linux-arm.tar.gz -C ./linux-arm/ .
34-
tar -czf kaniko-remote-${{ env.github.ref_name }}-linux-arm64.tar.gz -C ./linux-arm64/ .
35-
tar -czf kaniko-remote-${{ env.github.ref_name }}-win10-x64.tar.gz -C ./win10-x64/ .
36-
tar -czf kaniko-remote-${{ env.github.ref_name }}-win10-x86.tar.gz -C ./win10-x86/ .
37-
tar -czf kaniko-remote-${{ env.github.ref_name }}-win10-arm.tar.gz -C ./win10-arm/ .
38-
tar -czf kaniko-remote-${{ env.github.ref_name }}-win10-arm64.tar.gz -C ./win10-arm64/ .
39-
tar -czf kaniko-remote-${{ env.github.ref_name }}-osx-x64.tar.gz -C ./osx-x64/ .
40-
tar -czf kaniko-remote-${{ env.github.ref_name }}-osx-arm64.tar.gz -C ./osx-arm64/ .
31+
tar -czf kaniko-remote-${{ github.ref_name }}-linux-x64.tar.gz -C ./linux-x64/ .
32+
tar -czf kaniko-remote-${{ github.ref_name }}-linux-musl-x64.tar.gz -C ./linux-musl-x64/ .
33+
tar -czf kaniko-remote-${{ github.ref_name }}-linux-arm.tar.gz -C ./linux-arm/ .
34+
tar -czf kaniko-remote-${{ github.ref_name }}-linux-arm64.tar.gz -C ./linux-arm64/ .
35+
tar -czf kaniko-remote-${{ github.ref_name }}-win10-x64.tar.gz -C ./win10-x64/ .
36+
tar -czf kaniko-remote-${{ github.ref_name }}-win10-x86.tar.gz -C ./win10-x86/ .
37+
tar -czf kaniko-remote-${{ github.ref_name }}-win10-arm.tar.gz -C ./win10-arm/ .
38+
tar -czf kaniko-remote-${{ github.ref_name }}-win10-arm64.tar.gz -C ./win10-arm64/ .
39+
tar -czf kaniko-remote-${{ github.ref_name }}-osx-x64.tar.gz -C ./osx-x64/ .
40+
tar -czf kaniko-remote-${{ github.ref_name }}-osx-arm64.tar.gz -C ./osx-arm64/ .
4141
- name: Create github release
4242
uses: softprops/action-gh-release@v1
4343
with:
44-
files: kaniko-remote-${{ env.github.ref_name }}-*.tar.gz
44+
files: kaniko-remote-${{ github.ref_name }}-*.tar.gz

0 commit comments

Comments
 (0)