Beta Release v2.0.0-beta.1 #3
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Due to some issues with Github action runners the build process will run on an external runner. | |
# This workflow will trigger this external build process. | |
name: Trigger external build (beta) | |
on: | |
workflow_dispatch: | |
release: | |
types: | |
- prereleased | |
# schedule: | |
# - cron: '0 10 1 * *' | |
jobs: | |
trigger_beta_build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Trigger build (beta) | |
uses: benc-uk/[email protected] | |
with: | |
ref: refs/heads/main | |
workflow: iob.raspberry-os - Build image (beta) | |
repo: buanet/private.actionsrunner | |
token: ${{ secrets.ACTIONS_PAT }} |