Skip to content

Commit

Permalink
adding artifact uploader
Browse files Browse the repository at this point in the history
  • Loading branch information
ampledata committed Apr 26, 2024
1 parent 975c3c0 commit 1d87740
Showing 1 changed file with 28 additions and 1 deletion.
29 changes: 28 additions & 1 deletion .github/workflows/build_arm64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,4 +75,31 @@ jobs:
# refs/tags/v*.*.*
version: "1.0.0"
arch: 'arm64'
desc: 'A multi-platform AIS Receiver'
desc: 'A multi-platform AIS Receiver'

- uses: actions/upload-artifact@v4
with:
name: artifact-deb
path: |
*.deb
- name: Create Release
id: create_release
uses: actions/create-release@master
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ github.ref }}
release_name: Release ${{ github.ref }}
draft: false
prerelease: false

- name: Upload Release Asset
id: upload-release-asset
uses: svenstaro/upload-release-action@v2
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: *.deb
tag: ${{ github.ref }}
overwrite: true
file_glob: true

0 comments on commit 1d87740

Please sign in to comment.