From 6245ad3e108c362f500ac52a2c27e3ddfb7b9145 Mon Sep 17 00:00:00 2001 From: Alexey Khromov Date: Sun, 13 Apr 2025 20:54:59 +0300 Subject: [PATCH] CI fx workflow 40 --- .gitea/workflows/arch.yaml | 9 ++++++--- .gitea/workflows/debpkg.yaml | 4 ++-- 2 files changed, 8 insertions(+), 5 deletions(-) diff --git a/.gitea/workflows/arch.yaml b/.gitea/workflows/arch.yaml index 5d78116..c4fae03 100644 --- a/.gitea/workflows/arch.yaml +++ b/.gitea/workflows/arch.yaml @@ -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 diff --git a/.gitea/workflows/debpkg.yaml b/.gitea/workflows/debpkg.yaml index e9d860d..e85f7d7 100644 --- a/.gitea/workflows/debpkg.yaml +++ b/.gitea/workflows/debpkg.yaml @@ -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"