We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 440aecf commit eddcaf5Copy full SHA for eddcaf5
.github/workflows/linux.yml
@@ -152,3 +152,20 @@ jobs:
152
run: |-
153
make -C build_plugins install DESTDIR="${PWD}"/ROOT_PLUGINS
154
find ROOT_PLUGINS/ | sort
155
+
156
+ - name: 'Prepare artifacts for upload'
157
+ if: "${{ strategy.job-index == 0 }}"
158
+ run: |-
159
+ set -x
160
+ dirname="commit-$(git log -1 --format='%H')"
161
+ mkdir "${dirname}"/
162
+ mv -v libvisual/libvisual-0.*.tar.* "${dirname}"/
163
+ mv -v libvisual-plugins/libvisual-plugins-0.*.tar.* "${dirname}"/
164
165
+ - name: 'Upload artifacts'
166
+ uses: actions/[email protected]
167
168
+ with:
169
+ name: release-archives
170
+ path: commit-*/*
171
+ if-no-files-found: error
0 commit comments