We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cd55676 commit c446552Copy full SHA for c446552
1 file changed
.github/workflows/main.yml
@@ -99,13 +99,14 @@ jobs:
99
- name: create deken packages
100
run: |
101
ls -la
102
- for artifact in *; do
+ for artifact in fd_lib-*.zip; do
103
+ echo "Packaging $artifact ..."
104
unzip -d fd_lib $artifact
105
docker run --rm \
106
--user $(id -u) \
107
--volume ${{ github.workspace }}:/deken \
108
registry.git.iem.at/pd/deken \
- deken package --name fd_lib --version "${{ github.ref_name }}" fd_lib
109
+ deken package --version "${{ github.ref_name }}" fd_lib
110
rm -rf fd_lib
111
done
112
0 commit comments