Debianized again, fixed debuild, CI fx workflow
This commit is contained in:
@@ -0,0 +1,28 @@
|
||||
name: Debian build
|
||||
run-name: Deploy to ${{ inputs.deploy_target }} by @${{ github.actor }} 🚀
|
||||
on: [push]
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
branches:
|
||||
- 'master'
|
||||
- 'zx'
|
||||
steps:
|
||||
- name: Checking environment
|
||||
continue-on-error: true
|
||||
run: printenv
|
||||
- name: Cloning source
|
||||
uses: actions/checkout@v3
|
||||
- name: Installing build-essential
|
||||
continue-on-error: true
|
||||
run: dpkg -V
|
||||
- name: Building package
|
||||
continue-on-error: true
|
||||
run: cd ${{gitea.basedir}} && pwd && cd debian && debuild -us -uc -b
|
||||
- name: Try to upload artifacts
|
||||
uses: actions/upload-artifact@v3
|
||||
with:
|
||||
name: bforce
|
||||
path: bforce*.deb
|
||||
- run: echo "This job's over"
|
||||
|
||||
Reference in New Issue
Block a user