forked from MIrrors/gasket-driver
Initial draft of build and publish workflow
Signed-off-by: Kellen Renshaw <kellen@bluequartz.xyz>
This commit is contained in:
22
.gitea/workflows/build.yaml
Normal file
22
.gitea/workflows/build.yaml
Normal file
@@ -0,0 +1,22 @@
|
||||
name: Build and Publish
|
||||
run-name: ${{ gitea.actor }} initiated build.
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- 'main'
|
||||
|
||||
jobs:
|
||||
build-wheel:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout code
|
||||
uses: https://git.bluequartz.xyz/actions/checkout@v4
|
||||
|
||||
- name: Install build-deps
|
||||
run: apt-get build-dep .
|
||||
|
||||
- name: Build Package
|
||||
run: debuild -us -uc -tc -b
|
||||
|
||||
- name: Publish Package to Deb repo
|
||||
run: ls -lahR
|
||||
Reference in New Issue
Block a user