Skip to content

Commit 59d0fc4

Browse files
debug
1 parent acbb12e commit 59d0fc4

File tree

1 file changed

+15
-3
lines changed

1 file changed

+15
-3
lines changed

Diff for: .github/workflows/make-releases.yml

+15-3
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
strategy:
1010
matrix:
1111
# NGINX versions to build/test against
12-
nginx-version: ['1.20.2', '1.22.1', '1.24.0', '1.26.2', '1.27.3']
12+
nginx-version: ['1.20.2'] #, '1.22.1', '1.24.0', '1.26.2', '1.27.3']
1313

1414
# The following versions of libjwt are compatible:
1515
# * v1.0 - v1.12.0
@@ -19,7 +19,7 @@ jobs:
1919
# * Debian and Ubuntu's repos have v1.10.2
2020
# * EPEL has v1.12.1
2121
# This compiles against each version prior to a breaking change and the latest release
22-
libjwt-version: ['1.12.0', '1.14.0', '1.15.3']
22+
libjwt-version: ['1.12.0'] #, '1.14.0', '1.15.3']
2323
runs-on: ubuntu-latest
2424
steps:
2525

@@ -105,6 +105,7 @@ jobs:
105105
with:
106106
if-no-files-found: error
107107
name: ${{steps.meta.outputs.filename}}
108+
path: ${{steps.meta.outputs.filename}}
108109

109110
release:
110111
name: Create/Update Release
@@ -119,11 +120,22 @@ jobs:
119120
run: |
120121
echo "date_now=$(date --rfc-3339=seconds)" >> "${GITHUB_OUTPUT}"
121122
122-
- name: Download Build Artifacts
123+
- name: Download Artifacts
123124
uses: actions/download-artifact@v4
124125
with:
125126
path: artifacts
126127

128+
- name: Flatten Artifacts
129+
run: |
130+
set -eux
131+
132+
cd artifacts
133+
134+
for d in $(find . -type d); do
135+
mv $d/* ./
136+
rm -rf $d
137+
done
138+
127139
- name: Upload Builds to Release
128140
uses: ncipollo/release-action@v1
129141
with:

0 commit comments

Comments
 (0)