Skip to content

Commit 3fcae91

Browse files
committed
workflow
Signed-off-by: Alexey Cluster <[email protected]>
1 parent 466e56a commit 3fcae91

File tree

1 file changed

+13
-1
lines changed

1 file changed

+13
-1
lines changed

.github/workflows/build-test.yml

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
tar -czvf ../${{ env.APP_NAME }}.tar.gz *
4343
4444
- name: Upload artifact
45-
uses: actions/upload-artifact@v3
45+
uses: actions/upload-artifact@v4
4646
with:
4747
name: ${{ env.APP_NAME }}
4848
path: ${{ env.OUT_DIR }}
@@ -55,9 +55,15 @@ jobs:
5555
- name: Download artifacts
5656
uses: actions/[email protected]
5757

58+
- name: Debug print
59+
run: find .
60+
5861
- name: Move files to the root
5962
run: find -mindepth 2 -exec mv {} . \;
6063

64+
- name: Debug print
65+
run: find .
66+
6167
- name: Calculate and save MD5 for each file
6268
run: |
6369
for file in *; do
@@ -66,6 +72,9 @@ jobs:
6672
fi
6773
done
6874
75+
- name: Debug print
76+
run: find .
77+
6978
- name: Generate index.html
7079
run: |
7180
echo "<html><head><title>FDSKey</title></head><meta http-equiv='Cache-Control' content='no-cache, no-store, must-revalidate'/>" > index.html
@@ -76,6 +85,9 @@ jobs:
7685
echo "Bootloader (.elf): <a href='bootloader.elf'>bootloader.elf</a><br/><small>(MD5: <a href='bootloader.elf.md5'>`cat bootloader.elf.md5`</a>)</small></br>Use this file to write the bootloader using programmer.<br/><br/>" >> index.html
7786
echo "</body></html>" >> index.html
7887
88+
- name: Debug print
89+
run: find .
90+
7991
- name: Upload artifact
8092
uses: actions/upload-pages-artifact@v1
8193
with:

0 commit comments

Comments
 (0)