Debianized again, fixed debuild, CI fx workflow
Archlinux build / build (push) Successful in 2m57s
Debian build / build (push) Successful in 1m8s
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 16s

This commit is contained in:
zx
2025-04-13 16:14:26 +03:00
parent 8339af8eac
commit 83ce06579c
11 changed files with 57 additions and 27 deletions
+1 -1
View File
@@ -8,7 +8,7 @@ jobs:
- 'master'
- 'zx'
steps:
- run: echo "🎉 The job was automatically triggered by a ${{ inputs }} event."
- run: echo "🎉 The job was automatically triggered by a ${{ inputs.event }} event."
- run: echo "🐧 This job is now running on a ${{ runner.os }} server hosted by Gitea!"
- run: echo "🔎 The name of your branch is ${{ gitea.ref }} and your repository is ${{ gitea.repository }}."
- run: echo "💡 The ${{ gitea.repository }} repository has been cloned to the runner."
+28
View File
@@ -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"