bforce/.gitea/workflows/debpkg.yaml
Alexey Khromov 224115fffe
Some checks failed
Debian build / build (push) Failing after 2m1s
CI fx workflow 30
2025-04-13 17:39:35 +03:00

35 lines
991 B
YAML

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-essentials
continue-on-error: true
run: |
apt-get update
apt-get install -y build-essential fakeroot devscripts debhelper pkg-config --no-install-recommends
- name: Building package
continue-on-error: false
run: |
pwd
echo '---------------------'
cd ${GITHUB_WORKSPACE}/debian
ls -l
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"