Files
William Allen 35291ee609 Make CI workflows fork-friendly (#19807)
* Make some CI conditional for forks

Signed-off-by: wallentx <william.allentx@gmail.com>

* fix conditional for build installers

Signed-off-by: wallentx <william.allentx@gmail.com>

* fix macos ARM and Linux ARM onnpre-commit

Signed-off-by: wallentx <william.allentx@gmail.com>

* Testing SSH signing

* Remove conditional for checking signed commits

* Use macos-15 instead of macos-latest, and use public gh linux arm

* fix yaml array vs literal string

---------

Signed-off-by: wallentx <william.allentx@gmail.com>
2025-08-14 12:44:10 -07:00

38 lines
1.1 KiB
YAML

# Starts a sync test for every new release (pre-releases included)
name: Start Sync Test
on:
release:
types: [published]
permissions:
id-token: write
contents: read
jobs:
start_release:
if: github.repository_owner == 'Chia-Network'
name: Starts Sync Test
runs-on: ubuntu-latest
steps:
- name: Set Env
uses: Chia-Network/actions/setjobenv@main
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Trigger sync test workflow via github-glue
uses: Chia-Network/actions/github/glue@main
with:
json_data: '{"test_ref": "${{ env.RELEASE_TAG }}"}'
glue_url: "${{ secrets.GLUE_API_URL }}"
glue_project: "sync-test/${{ env.RELEASE_TAG }}"
glue_path: "start"
- name: Trigger sync test workflow success via github-glue
uses: Chia-Network/actions/github/glue@main
with:
json_data: '{"test_ref": "${{ env.RELEASE_TAG }}"}'
glue_url: "${{ secrets.GLUE_API_URL }}"
glue_project: "sync-test/${{ env.RELEASE_TAG }}"
glue_path: "success/deploy"