CI fx workflow 40
All checks were successful
Archlinux build / build-arch (push) Successful in 2m51s
Debian build / build-ubuntu (push) Successful in 3m40s

This commit is contained in:
Alexey Khromov 2025-04-13 20:54:59 +03:00
parent e3a1f7e52e
commit 6245ad3e10
2 changed files with 8 additions and 5 deletions

View File

@ -1,8 +1,11 @@
name: Archlinux build
run-name: Deploy to ${{ inputs.deploy_target }} by @${{ github.actor }} 🚀
on: [push]
on:
- push
- workflow_dispatch
jobs:
build:
build-arch:
runs-on: arch-latest
if: ${{ github.ref }} == 'refs/head/master'
branches:
@ -35,5 +38,5 @@ jobs:
- name: Try to upload artifacts
uses: actions/upload-artifact@v3
with:
name: bforce-${{ env.BFORCE_VER }}
name: bforce-${{ env.BFORCE_VER }}-Arch
path: bforce

View File

@ -2,7 +2,7 @@ name: Debian build
run-name: Deploy to ${{ inputs.deploy_target }} by @${{ github.actor }} 🚀
on: [push]
jobs:
build:
build-ubuntu:
runs-on: ubuntu-latest
branches:
- 'master'
@ -45,6 +45,6 @@ jobs:
- name: Try to upload artifacts
uses: actions/upload-artifact@v3
with:
name: bforce-${{ env.BFORCE_VER }}
name: bforce-${{ env.BFORCE_VER }}-Ubuntu
path: ${{ env.GITHUB_WORKSPACE }}/artifacts/bforce*.deb
- run: echo "This job's over"