Skip to content

Commit

Permalink
👷 Add missing linux dependencies for pupnet
Browse files Browse the repository at this point in the history
  • Loading branch information
russkyc committed Feb 3, 2024
1 parent 94c908a commit 700e68f
Showing 1 changed file with 17 additions and 1 deletion.
18 changes: 17 additions & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,18 @@ jobs:
with:
file: /home/runner/work/showcase-pdf/showcase-pdf/Showcase/Showcase.csproj

- name: Install Flatpak Builder
run: sudo apt install flatpak flatpak-builder

- name: Install Dpkg
run: sudo apt install dpkg

- name: Install Rpm
run: sudo apt install rpm

- name: Install Flathub
run: sudo flatpak install flathub org.freedesktop.Platform//22.08 org.freedesktop.Sdk//22.08

- name: Setup PupNet
run: dotnet tool install -g KuiperZone.PupNet

Expand All @@ -93,6 +105,9 @@ jobs:

- name: Build x64 Deb
run: pupnet Showcase.Pupnet.conf -r linux-x64 -y -k deb -v ${{ steps.package_version.outputs.version }} -o showcase-pdf-linux-${{ steps.package_version.outputs.version }}-x64.deb

- name: Build x64 Rpm
run: pupnet Showcase.Pupnet.conf -r linux-x64 -y -k rpm -v ${{ steps.package_version.outputs.version }} -o showcase-pdf-linux-${{ steps.package_version.outputs.version }}-x64.rpm

- name: Publish Release
uses: softprops/action-gh-release@v1
Expand All @@ -103,4 +118,5 @@ jobs:
files: |
/home/runner/work/showcase-pdf/showcase-pdf/Deploy/bin/showcase-pdf-win-${{ steps.package_version.outputs.version }}-x64.zip
/home/runner/work/showcase-pdf/showcase-pdf/Deploy/bin/showcase-pdf-win-${{ steps.package_version.outputs.version }}-x64.appimage
/home/runner/work/showcase-pdf/showcase-pdf/Deploy/bin/showcase-pdf-win-${{ steps.package_version.outputs.version }}-x64.deb
/home/runner/work/showcase-pdf/showcase-pdf/Deploy/bin/showcase-pdf-win-${{ steps.package_version.outputs.version }}-x64.deb
/home/runner/work/showcase-pdf/showcase-pdf/Deploy/bin/showcase-pdf-win-${{ steps.package_version.outputs.version }}-x64.rpm

0 comments on commit 700e68f

Please sign in to comment.