ci(trigger): Add manual

This commit is contained in:
Tanguy Herbron 2024-06-25 14:37:33 +02:00
parent 1e7ea79be1
commit 54973261e3

View File

@ -3,6 +3,7 @@ on:
workflow_dispatch: workflow_dispatch:
release: release:
types: [released] types: [released]
issue_comment:
jobs: jobs:
@ -10,6 +11,8 @@ jobs:
container: container:
image: debian:latest image: debian:latest
runs-on: [arm64] 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: steps:
- name: Create ISO - name: Create ISO
@ -40,6 +43,8 @@ jobs:
container: container:
image: debian:latest image: debian:latest
runs-on: [arm64] 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: steps:
- name: Create ISO - name: Create ISO