Skip to content

Commit

Permalink
Update pipeline: add pip dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
lukaspanni committed Nov 29, 2023
1 parent 6247bb9 commit b14b059
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions .github/workflows/create-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- name: Install dependencies
run: |
apt update && \
apt install -y zip plantuml librsvg2-bin && \
apt install -y zip plantuml librsvg2-bin python3-pip && \
pip install pandoc-plantuml-filter
- name: Build PDFs
run: ./build.sh
Expand All @@ -30,8 +30,6 @@ jobs:
needs: build_pdf
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Download PDF artifacts
uses: actions/download-artifact@v3
with:
Expand All @@ -40,4 +38,5 @@ jobs:
env:
GH_TOKEN: ${{ secrets.GH_TOKEN }}
run: |
gh release create $(date +'%Y-%m-%d %H:%M') --generate-notes './build.zip#All PDFs'
ls -R
gh release create $(date +'%Y-%m-%d %H:%M') build.zip --generate-notes

0 comments on commit b14b059

Please sign in to comment.