Update release pipelines to upload release artifacts
This commit is contained in:
parent
4334f8c9c9
commit
cb1bc1c8aa
52 changed files with 593 additions and 74 deletions
29
.github/workflows/release-appimage.yml
vendored
Normal file
29
.github/workflows/release-appimage.yml
vendored
Normal file
|
|
@ -0,0 +1,29 @@
|
|||
name: Release (AppImage)
|
||||
on:
|
||||
release:
|
||||
types:
|
||||
- created
|
||||
jobs:
|
||||
appimage:
|
||||
name: Build AppImage
|
||||
runs-on: ubuntu-latest
|
||||
container: docker
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
fetch-depth: 0
|
||||
- name: Build
|
||||
run: |
|
||||
docker build -t appimage-builder . -f burrow-gtk/build-aux/Dockerfile
|
||||
docker create --name temp appimage-builder
|
||||
docker cp temp:/app/burrow-gtk/build-appimage/Burrow-x86_64.AppImage .
|
||||
docker rm temp
|
||||
- name: Upload to GitHub
|
||||
uses: SierraSoftworks/gh-releases@v1.0.7
|
||||
with:
|
||||
token: ${{ secrets.GITHUB_TOKEN }}
|
||||
release_tag: ${{ github.ref_name }}
|
||||
overwrite: 'true'
|
||||
files: |
|
||||
Burrow-x86_64.AppImage
|
||||
Loading…
Add table
Add a link
Reference in a new issue