Skip to content

Commit 3753675

Browse files
authored
Merge pull request #1920 from petterreinholdtsen/github-ci-deb-pdf-artifacts
Save generated deb and pdf artifacts in github CI run.
2 parents 36b83c6 + 24921d1 commit 3753675

1 file changed

Lines changed: 14 additions & 0 deletions

File tree

.github/workflows/ci.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -89,3 +89,17 @@ jobs:
8989
sudo apt-get install ../*.deb
9090
./scripts/runtests -p tests/
9191
eatmydata lintian --info --display-info --pedantic --display-experimental ../linuxcnc*.changes
92+
mkdir built-debs
93+
cp ../linuxcnc*_* built-debs/
94+
- name: Archive generated PDF files
95+
uses: actions/upload-artifact@v3
96+
with:
97+
name: PDFs
98+
retention-days: 7
99+
path: docs/*.pdf
100+
- name: Archive generated Debian packages
101+
uses: actions/upload-artifact@v3
102+
with:
103+
name: debs
104+
retention-days: 7
105+
path: built-debs/*

0 commit comments

Comments
 (0)