mirror of
https://github.com/Chia-Network/chia-blockchain.git
synced 2026-09-24 07:25:03 -05:00
* 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>
38 lines
1.1 KiB
YAML
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"
|