-
-
Notifications
You must be signed in to change notification settings - Fork 64
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Joachim Wiberg <[email protected]>
- Loading branch information
Showing
1 changed file
with
69 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,69 @@ | ||
name: Release General | ||
|
||
on: | ||
push: | ||
tags: | ||
- '[0-9]+.[0-9]+' | ||
|
||
jobs: | ||
release: | ||
name: Create GitHub release | ||
runs-on: ubuntu-latest | ||
if: startsWith(github.ref, 'refs/tags/') | ||
outputs: | ||
upload_url: ${{ steps.create_release.outputs.upload_url }} | ||
release_id: ${{ steps.create_release.outputs.id }} | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Extract ChangeLog entry ... | ||
# Hack to extract latest entry for body_path below | ||
run: | | ||
awk '/-----*/{if (x == 1) exit; x=1;next}x' ChangeLog.md \ | ||
|head -n -1 > release.md | ||
cat release.md | ||
- name: Create release ... | ||
id: create_release | ||
uses: actions/create-release@v1 | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
with: | ||
tag_name: ${{ github.ref }} | ||
release_name: Finit v${{ github.ref }} | ||
body_path: release.md | ||
draft: false | ||
prerelease: false | ||
tarball: | ||
name: Build and upload release tarball | ||
needs: release | ||
if: startsWith(github.ref, 'refs/tags/') | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Installing dependencies | ||
run: | | ||
sudo apt-get -y update | ||
sudo apt-get -y install pkg-config | ||
wget https://github.com/troglobit/libuev/releases/download/v2.3.2/libuev-2.3.2.tar.xz | ||
wget https://github.com/troglobit/libite/releases/download/v2.3.1/libite-2.3.1.tar.gz | ||
tar xf libuev-2.3.2.tar.xz | ||
tar xf libite-2.3.1.tar.gz | ||
(cd libuev-2.3.2 && ./configure --prefix=/usr && make && sudo make install-strip) | ||
(cd libite-2.3.1 && ./configure --prefix=/usr && make && sudo make install-strip) | ||
sudo ldconfig | ||
- name: Creating Makefiles | ||
run: | | ||
./autogen.sh | ||
./configure --prefix= --enable-x11-common-plugin --with-watchdog --with-keventd | ||
- name: Building release | ||
run: | | ||
make release | ||
ls -lF ../ | ||
mkdir -p artifacts/ | ||
mv ../*.tar.* artifacts/ | ||
- name: Uploading release artifacts | ||
uses: skx/[email protected] | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
with: | ||
releaseId: ${{ needs.release.outputs.release_id }} | ||
args: artifacts/* |