Skip to content

Commit d194b52

Browse files
authored
Merge pull request #1544 from kernelkit/misc
2 parents 5c3a476 + 674fd6c commit d194b52

31 files changed

Lines changed: 478 additions & 323 deletions
File renamed without changes.

.github/CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -272,7 +272,7 @@ other contributions that are not aligned to this Code of Conduct."*
272272
[PEP-8]: https://peps.python.org/pep-0008/
273273
[RDD]: https://tom.preston-werner.com/2010/08/23/readme-driven-development
274274
[cbeams]: https://cbea.ms/git-commit/#seven-rules
275-
[conduct]: CODE-OF-CONDUCT.md
275+
[conduct]: CODE_OF_CONDUCT.md
276276
[DCO]: https://developercertificate.org/
277277
[closing]: https://docs.github.com/en/get-started/writing-on-github/working-with-advanced-formatting/using-keywords-in-issues-and-pull-requests
278278
[gpg-verify]: https://docs.github.com/en/authentication/managing-commit-signature-verification

.github/workflows/build-boot.yml

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -113,12 +113,6 @@ jobs:
113113
pattern: "artifact-*"
114114
merge-multiple: true
115115

116-
- name: Create checksums ...
117-
run: |
118-
for file in *.tar.gz; do
119-
sha256sum $file > $file.sha256
120-
done
121-
122116
- uses: ncipollo/release-action@v1
123117
with:
124118
allowUpdates: true
@@ -128,7 +122,7 @@ jobs:
128122
prerelease: true
129123
tag: "latest-boot"
130124
token: ${{ secrets.GITHUB_TOKEN }}
131-
artifacts: "*.tar.gz*"
125+
artifacts: "*.tar.gz"
132126

133127
- name: Summary
134128
run: |

.github/workflows/build-image.yml

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -223,15 +223,6 @@ jobs:
223223
output/images/*-emmc.img*
224224
retention-days: 30
225225

226-
- name: Create checksums
227-
run: |
228-
cd output/images/
229-
for file in *-sdcard.img *-emmc.img; do
230-
if [ -f "$file" ]; then
231-
sha256sum "$file" > "$file.sha256"
232-
fi
233-
done
234-
235226
- name: Upload to release
236227
uses: ncipollo/release-action@v1
237228
with:
@@ -242,7 +233,7 @@ jobs:
242233
prerelease: true
243234
tag: "latest-boot"
244235
token: ${{ secrets.GITHUB_TOKEN }}
245-
artifacts: "output/images/*-sdcard.img*,output/images/*-emmc.img*"
236+
artifacts: "output/images/*-sdcard.img,output/images/*-emmc.img"
246237

247238
- name: Generate summary
248239
run: |

.github/workflows/inventory.yml

Lines changed: 0 additions & 88 deletions
This file was deleted.

.github/workflows/publish.yml

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,6 @@ jobs:
1616
pattern: "artifact-*"
1717
merge-multiple: true
1818

19-
- name: Create checksums ...
20-
run: |
21-
for file in *.tar.gz; do
22-
sha256sum $file > $file.sha256
23-
done
24-
2519
- uses: ncipollo/release-action@v1
2620
with:
2721
allowUpdates: true
@@ -32,7 +26,7 @@ jobs:
3226
prerelease: true
3327
tag: "latest"
3428
token: ${{ secrets.GITHUB_TOKEN }}
35-
artifacts: "*.tar.gz*"
29+
artifacts: "*.tar.gz"
3630

3731
- name: Summary
3832
run: |

.github/workflows/release.yml

Lines changed: 1 addition & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -83,17 +83,6 @@ jobs:
8383
pattern: "artifact-*"
8484
merge-multiple: true
8585

86-
- name: Create checksums ...
87-
run: |
88-
for file in *.tar.gz; do
89-
sha256sum $file > $file.sha256
90-
done
91-
if ls *.qcow2 &>/dev/null; then
92-
for file in *.qcow2; do
93-
sha256sum "$file" > "$file.sha256"
94-
done
95-
fi
96-
9786
- name: Extract ChangeLog entry ...
9887
run: |
9988
cat doc/ChangeLog.md | ./utils/extract-changelog.sh > release.md
@@ -106,7 +95,7 @@ jobs:
10695
makeLatest: ${{ steps.rel.outputs.latest }}
10796
discussionCategory: ${{ steps.rel.outputs.cat }}
10897
bodyFile: release.md
109-
artifacts: "*.tar.gz*,*.qcow2*"
98+
artifacts: "*.tar.gz,*.qcow2"
11099

111100
- name: Summary
112101
run: |

.github/workflows/weekly.yml

Lines changed: 1 addition & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -27,17 +27,6 @@ jobs:
2727
pattern: "artifact-*"
2828
merge-multiple: true
2929

30-
- name: Create checksums
31-
run: |
32-
for file in *.tar.gz; do
33-
sha256sum $file > $file.sha256
34-
done
35-
if ls *.qcow2 &>/dev/null; then
36-
for file in *.qcow2; do
37-
sha256sum "$file" > "$file.sha256"
38-
done
39-
fi
40-
4130
- uses: ncipollo/release-action@v1
4231
with:
4332
tag: latest
@@ -54,7 +43,7 @@ jobs:
5443
5544
**Commit:** ${{ github.sha }}
5645
**Built:** ${{ github.run_id }}
57-
artifacts: "*.tar.gz*,*.qcow2*"
46+
artifacts: "*.tar.gz,*.qcow2"
5847

5948
- name: Summary
6049
run: |

0 commit comments

Comments
 (0)