Skip to content

Commit 2454f59

Browse files
committed
Add GhostScript installation step to GitHub Actions workflow to enable 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.
1 parent a112b08 commit 2454f59

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/release.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,10 @@ jobs:
99
steps:
1010
- name: Checkout repository
1111
uses: actions/checkout@v4
12+
- name: Install GhostScript
13+
run: sudo apt-get update && sudo apt-get install -y ghostscript
1214
- name: Build
13-
run: make screen
15+
run: make
1416
- name: Create release
1517
uses: softprops/action-gh-release@v2
1618
if: startsWith(github.ref, 'refs/tags/')

0 commit comments

Comments
 (0)