Skip to content

Commit

Permalink
Fix initial github workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
lefessan committed Jan 13, 2024
1 parent fcb48bc commit 4f5914f
Showing 1 changed file with 16 additions and 3 deletions.
19 changes: 16 additions & 3 deletions .github/workflows/ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,15 +36,28 @@ jobs:
git config --global user.name github-actions
git config --global user.email [email protected]
- name: bootstrap
- name: Generate PDFs
run: |
cd guide
make pdf
- name: Upload some pdfs
- name: Upload all pdfs
uses: actions/[email protected]
with:
name: gnucobol-docs PDF distribution
name: gnucobol-docs-all-pdfs
path: guide/PDFs/*.pdf
if-no-files-found: error
retention-days: 0

- name: Generate HTML
run: |
cd guide
make html
- name: Upload HTML
uses: actions/[email protected]
with:
name: gnucobol-docs-html
path: guide/HTML
if-no-files-found: error
retention-days: 0

0 comments on commit 4f5914f

Please sign in to comment.