49 lines
1.5 KiB
YAML
49 lines
1.5 KiB
YAML
name: Trigger Skeletons Build
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
inputs:
|
|
version:
|
|
description: 'Which Grav release to use'
|
|
required: true
|
|
default: 'latest'
|
|
admin:
|
|
description: 'Create also a package with Admin'
|
|
required: true
|
|
default: true
|
|
|
|
permissions:
|
|
contents: read # to fetch code (actions/checkout)
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
env:
|
|
WORKFLOW: "build-skeleton.yml"
|
|
AUTH: ":${{secrets.GLOBAL_TOKEN}}"
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Make it rain ☔️
|
|
run: |
|
|
SKELETONS=`curl -s "${{secrets.SKELETONS_JSON_LIST}}"`
|
|
echo "$SKELETONS" | jq -cr '.[]' | while read SKELETON; do
|
|
KEY=$(echo "$SKELETON" | jq -cr 'keys[0]')
|
|
VERSION=$(echo "$SKELETON" | jq -cr '.[]')
|
|
URL="https://api.github.com/repos/${KEY}/actions/workflows/${WORKFLOW}/dispatches"
|
|
|
|
curl -X POST \
|
|
-u "${AUTH}" \
|
|
-H "Accept: application/vnd.github.everest-preview+json" \
|
|
-H "Content-Type: application/json" \
|
|
-sS \
|
|
${URL} \
|
|
--data '{ "ref": "develop",
|
|
"inputs": {
|
|
"tag": "'"$VERSION"'",
|
|
"version": "'"$INPUT_VERSION"'",
|
|
"admin": "'"$INPUT_ADMIN"'"
|
|
}
|
|
}' > /dev/null
|
|
echo "Dispatched Worfklow for ${KEY}@$VERSION"
|
|
done
|