File tree Expand file tree Collapse file tree 2 files changed +6
-5
lines changed
actions/publish-linux-snap Expand file tree Collapse file tree 2 files changed +6
-5
lines changed Original file line number Diff line number Diff line change 11name : ' Build for Linux'
22inputs :
3+ release-version :
4+ description : ' The release version'
5+ required : true
36 artifacts-path :
47 description : ' The path to the artifacts'
58 required : true
6- linux-artifact-name :
7- description : ' The name of the Linux artifact'
8- required : true
99
1010runs :
1111 using : ' composite'
Original file line number Diff line number Diff line change @@ -108,6 +108,7 @@ jobs:
108108 publish :
109109 name : Publish
110110 needs :
111+ - create-release
111112 - build-tauri
112113 runs-on : [ubuntu-20.04]
113114 # if: ${{ inputs.production-release == 'true' }}
@@ -119,13 +120,13 @@ jobs:
119120 - name : Download Linux artifacts
120121 uses : actions/download-artifact@v4
121122 with :
122- pattern : algokit-explorer- linux-*
123+ pattern : ${{ needs.build-tauri.outputs. linux-artifact-name }}
123124 merge-multiple : true
124125 path : linux-artifacts
125126
126127 - name : publish Linux Snap
127128 if : ${{ runner.os == 'Linux' }}
128129 uses : ./.github/actions/publish-linux-snap
129130 with :
131+ release-version : ${{ needs.create-release.outputs.release-version }}
130132 artifacts-path : linux-artifacts
131- linux-artifact-name : ${{ needs.build-tauri.outputs.linux-artifact-name }}
You can’t perform that action at this time.
0 commit comments