From 90cc4cef826542e20ab3782b7a94a3caa4ff57f7 Mon Sep 17 00:00:00 2001 From: Daniel McKnight Date: Wed, 28 Feb 2024 14:07:12 -0800 Subject: [PATCH 1/2] Fixes syntax error in test build automation --- .github/workflows/publish_test_build.yml | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) diff --git a/.github/workflows/publish_test_build.yml b/.github/workflows/publish_test_build.yml index 2b84406..eb6eceb 100644 --- a/.github/workflows/publish_test_build.yml +++ b/.github/workflows/publish_test_build.yml @@ -15,9 +15,13 @@ jobs: with: version_file: "neon_nodes/version.py" publish_prerelease: true - trigger_build: - uses: peter-evans/repository-dispatch@v3 - with: - repository: neongeckocom/neon-os - event-type: release - client-payload: '{"ref": "dev", "repo": "neon-debos"}' \ No newline at end of file + trigger_os_build: + runs-on: ubuntu-latest + needs: publish_alpha_build + steps: + - name: Call Release Action + uses: peter-evans/repository-dispatch@v3 + with: + repository: neongeckocom/neon-os + event-type: release + client-payload: '{"ref": "dev", "repo": "neon-debos"}' \ No newline at end of file From 6a7ccd8c26af020c476ce1df1bc3b7b4468ee9b8 Mon Sep 17 00:00:00 2001 From: Daniel McKnight Date: Wed, 28 Feb 2024 14:10:08 -0800 Subject: [PATCH 2/2] Fix typo --- .github/workflows/publish_test_build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/publish_test_build.yml b/.github/workflows/publish_test_build.yml index eb6eceb..4fd4d73 100644 --- a/.github/workflows/publish_test_build.yml +++ b/.github/workflows/publish_test_build.yml @@ -17,7 +17,7 @@ jobs: publish_prerelease: true trigger_os_build: runs-on: ubuntu-latest - needs: publish_alpha_build + needs: publish_alpha_release steps: - name: Call Release Action uses: peter-evans/repository-dispatch@v3