forked from MIrrors/gasket-driver
23 lines
458 B
YAML
23 lines
458 B
YAML
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
|