Skip to content

Commit

Permalink
Create kwave.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
ivan-hc committed Mar 20, 2024
1 parent 00740cb commit 2398731
Showing 1 changed file with 47 additions and 0 deletions.
47 changes: 47 additions & 0 deletions .github/workflows/kwave.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
name: kwave Appimage
concurrency:
group: build-${{ github.ref }}
cancel-in-progress: true

on:
workflow_dispatch:

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3

- name: build
run: |
sudo apt update && sudo apt install libfuse2
wget https://raw.githubusercontent.com/ivan-hc/Database-of-pkg2appimaged-packages/main/kwave
chmod a+x ./kwave
./kwave
mkdir dist
mv *AppImage dist/
- name: Upload artifact
uses: actions/upload-artifact@v1.0.0
with:
name: kwave-x86_64.AppImage
path: 'dist'

release:
needs: [build]
runs-on: ubuntu-latest

steps:
- uses: actions/download-artifact@v1
with:
name: kwave-x86_64.AppImage

- name: release
uses: marvinpinto/action-automatic-releases@latest
with:
title: kwave
automatic_release_tag: kwave
prerelease: false
draft: false
files: |
kwave-x86_64.AppImage
repo_token: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 2398731

Please sign in to comment.