Skip to content

Commit d5935c9

Browse files
debug
1 parent acbb12e commit d5935c9

16 files changed

+20
-1017
lines changed

.github/workflows/make-releases.yml

+20-4
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

@@ -104,7 +104,8 @@ jobs:
104104
uses: actions/upload-artifact@v4
105105
with:
106106
if-no-files-found: error
107-
name: ${{steps.meta.outputs.filename}}
107+
name: release
108+
path: ${{steps.meta.outputs.filename}}
108109

109110
release:
110111
name: Create/Update Release
@@ -119,11 +120,26 @@ 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+
ls -lR
135+
136+
for d in $(find . -type d); do
137+
mv "$d/*" .
138+
rm -rf $d
139+
done
140+
141+
ls -lR
142+
127143
- name: Upload Builds to Release
128144
uses: ncipollo/release-action@v1
129145
with:

test/docker-compose-test.yml

-19
This file was deleted.

test/ec_key_256.pem

-5
This file was deleted.

test/ec_key_384.pem

-6
This file was deleted.

test/ec_key_521.pem

-8
This file was deleted.

0 commit comments

Comments
 (0)