diff --git a/.gitea/workflows/builder.yaml b/.gitea/workflows/builder.yaml index 04e5271..7293c6d 100644 --- a/.gitea/workflows/builder.yaml +++ b/.gitea/workflows/builder.yaml @@ -3,6 +3,7 @@ on: workflow_dispatch: release: types: [released] + issue_comment: jobs: @@ -10,6 +11,8 @@ jobs: container: image: debian:latest runs-on: [arm64] + # For manual trigger via Gitea while they implement the workflow_dispatch + if: ${{ github.event.pull_request != '' || github.event.pusher != '' || github.event.comment.body == '!actions run x86' || github.event.comment.body == '!actions run all' }} steps: - name: Create ISO @@ -40,6 +43,8 @@ jobs: container: image: debian:latest runs-on: [arm64] + # For manual trigger via Gitea while they implement the workflow_dispatch + if: ${{ github.event.pull_request != '' || github.event.pusher != '' || github.event.comment.body == '!actions run arm' || github.event.comment.body == '!actions run all' }} steps: - name: Create ISO