Skip to content

Commit

Permalink
Add GhostScript installation step to GitHub Actions workflow to enabl…
Browse files Browse the repository at this point in the history
…e the creation of printable PDF files

The commit includes the modification in the release.yml file of the
GitHub Actions workflow to add an installation step for GhostScript
before the Build step. This change ensures that GhostScript is available
during the workflow execution to generate printable PDF files
effectively.
  • Loading branch information
placek committed Apr 19, 2024
1 parent a112b08 commit 2454f59
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,10 @@ jobs:
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install GhostScript
run: sudo apt-get update && sudo apt-get install -y ghostscript
- name: Build
run: make screen
run: make
- name: Create release
uses: softprops/action-gh-release@v2
if: startsWith(github.ref, 'refs/tags/')
Expand Down

0 comments on commit 2454f59

Please sign in to comment.