Skip to content

Commit

Permalink
Fix inkscape version
Browse files Browse the repository at this point in the history
  • Loading branch information
yanorei32 committed Dec 24, 2021
1 parent 7eb9d6c commit 8d583bf
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 2 deletions.
Binary file added .github/workflows/.build.yml.swp
Binary file not shown.
Binary file added .github/workflows/.release.yml.swp
Binary file not shown.
5 changes: 4 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,10 @@ jobs:
token: ${{ secrets.GITHUB_TOKEN }}

- name: Install inkscape
run: sudo apt-get install -y inkscape
run: |
sudo add-apt-repository -y ppa:inkscape.dev/stable
sudo apt-get -y update
sudo apt-get install -y inkscape
- name: build-dot
run: |
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,10 @@ jobs:
token: ${{ secrets.GITHUB_TOKEN }}

- name: Install inkscape
run: sudo apt-get install -y inkscape
run: |
sudo add-apt-repository -y ppa:inkscape.dev/stable
sudo apt-get -y update
sudo apt-get install -y inkscape
- name: build-dot
run: |
Expand Down

0 comments on commit 8d583bf

Please sign in to comment.