Skip to content

Commit

Permalink
chore(wokflows): added asset upload to GitHub workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
Mario Lukas committed Apr 8, 2024
1 parent 1570e96 commit 03aafdb
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/build-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,3 +35,14 @@ jobs:
run: chmod 600 $HOME/secrets/fabscan.key
- name: deploy build artifact
run: LC_ALL=C scp -o StrictHostKeyChecking=no -i $HOME/secrets/fabscan.key ${{ env.FILE_NAME }} ${{ secrets.FABSCAN_DEPLOY_USER }}@mariolukas.de:/var/deploy/release/.
- name: Upload Package to Release Assets
if: ${{ startsWith(github.ref, 'refs/tags/v') }}
id: upload-release-asset
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: ./${{ env.FILE_NAME }}
asset_name: ${{ env.FILE_NAME }}
asset_content_type: application/vnd.debian.binary-package
6 changes: 6 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
fabscanpi-server (0.10.3) UNRELEASED; urgency=medium
* added new firmware for FabScan HAT v2
* fixed package dependencies

-- Mario Lukas <[email protected]> Mon, 8 Apr 2024 17:30:00 +0100

fabscanpi-server (0.10.2) UNRELEASED; urgency=medium
* fixed semver, replaced deprecaded function calls

Expand Down

0 comments on commit 03aafdb

Please sign in to comment.