Skip to content

Commit

Permalink
ADD: GitHub release action
Browse files Browse the repository at this point in the history
  • Loading branch information
alexx2000 committed Feb 10, 2024
1 parent 7921ce5 commit 4e4ea19
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: build-release

on:
workflow_dispatch:
release:
types: [released]

concurrency:
group: ${{ github.ref }}
cancel-in-progress: true

jobs:
build-lin:
runs-on: ubuntu-20.04
steps:
- name: Install Lazarus
run: sudo apt install lazarus

- name: Install GTK library
run: sudo apt install libgtk2.0-dev libgstreamer1.0-dev libgstreamer-plugins-base1.0-dev

- name: Checkout source
uses: actions/checkout@v2

- name: Build packages
run: ./build.sh

- name: Upload binaries to release
uses: svenstaro/upload-release-action@v2
with:
file: plugins-*.tar.gz
tag: ${{ github.ref }}
overwrite: true
file_glob: true

0 comments on commit 4e4ea19

Please sign in to comment.