Skip to content

Commit

Permalink
Merge pull request #1 from starkbamse/dpkg-install
Browse files Browse the repository at this point in the history
Add automatic installation of .deb file on runner
  • Loading branch information
aspect authored Jan 22, 2024
2 parents fa3779c + 403968e commit a05f5f6
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -325,7 +325,11 @@ jobs:
arch: 'amd64'
depends: 'libglib2.0-0, libatk1.0-0, libgtk-3-0'
desc: 'Kaspa NG desktop p2p node and wallet'

- name: Install and Test Debian Package
if: runner.os == 'Linux'
run: |
sudo dpkg -i "${{ steps.package_debian.outputs.file_name }}"
kaspa-ng --version || echo "Failed to execute kaspa-ng --version"
# - name: Package Details
# if: runner.os == 'Linux'
# run: |
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,11 @@ jobs:
arch: 'amd64'
depends: 'libglib2.0-0, libatk1.0-0, libgtk-3-0'
desc: 'Kaspa NG desktop p2p node and wallet'
- name: Install and Test Debian Package
if: runner.os == 'Linux'
run: |
sudo dpkg -i "${{ steps.package_debian.outputs.file_path }}"
kaspa-ng --help || echo "Failed to execute kaspa-ng --help"
- name: Upload release asset
uses: actions/upload-release-asset@v1
Expand Down

0 comments on commit a05f5f6

Please sign in to comment.