-
-
Notifications
You must be signed in to change notification settings - Fork 124
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(ci): add build and publish workflow
- Loading branch information
1 parent
a0e35eb
commit f96f90c
Showing
2 changed files
with
53 additions
and
5 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,53 @@ | ||
name: Build 🏗️ and Publish 📦️ | ||
|
||
on: | ||
push: | ||
tags: ['*'] | ||
|
||
jobs: | ||
create-release: | ||
name: Create Release | ||
runs-on: ubuntu-22.04 | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Create release ${{ github.ref }} as a draft | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
run: | | ||
gh release create "${{ github.ref }}" --draft --generate-notes | ||
build-release: | ||
needs: [create-release] | ||
name: Build Release | ||
runs-on: ubuntu-22.04 | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Build .deb | ||
run: | | ||
apt-get -y update | ||
apt-get -y install debhelper devscripts | ||
REL_VER=$(grep "^readonly VERSION" deb-get | cut -d'"' -f2) | ||
dch -v "${REL_VER}-1" --distribution=unstable "New upstream release." | ||
dpkg-buildpackage --build=binary --no-check-builddeps --compression=gzip | ||
- name: Upload .deb | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
run: | | ||
for artefact in "../"*_all.deb; do | ||
gh release upload "${{ github.ref }}" "${artefact}" --clobber | ||
done | ||
publish-release: | ||
name: Publish Release | ||
needs: [build-release] | ||
runs-on: ubuntu-22.04 | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Publish release ${{ github.ref }} | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
run: | | ||
if [ "$(gh release view "${{ github.ref }}" --json assets --template '{{len .assets}}')" -lt 0 ]; then | ||
exit 1 | ||
fi | ||
gh release edit "${{ github.ref }}" --draft=false |
This file was deleted.
Oops, something went wrong.