Skip to content

Kick off build

Kick off build #3

Workflow file for this run

name: Kick off build
on:
workflow_dispatch:
inputs:
commit_branch:
description: branch
default: 'dailybuild'
type: string
permissions:
contents: write
jobs:
build:
runs-on: ubuntu-latest
name: Trigger build
steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
id: checkout
with:
ref: ${{ inputs.commit_branch }}
- name: Commit empty to trigger build
env:
BRANCH: ${{ inputs.commit_branch }}
run: |
git config --global user.name "${{ env.CI_COMMIT_AUTHOR }}"
git config --global user.email "[email protected]"
git commit -m "retrigger checks" --allow-empty
git push origin "$BRANCH"