From 0699c4bf8b254154744abe9d9a93ad7749c113d2 Mon Sep 17 00:00:00 2001 From: BlockyJ Date: Wed, 2 Oct 2024 16:50:41 +0100 Subject: [PATCH] feat: update github action to use dispatch (#51) * feat: update github action to use dispatch * Add tag trigger, remove pull request trigger --------- Co-authored-by: Dmitry Mirgaleev <35151170+dmirgaleev@users.noreply.github.com> --- .github/workflows/ghcr.yml | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ghcr.yml b/.github/workflows/ghcr.yml index 845e7818..a4448f95 100644 --- a/.github/workflows/ghcr.yml +++ b/.github/workflows/ghcr.yml @@ -1,13 +1,11 @@ name: Build + on: + repository_dispatch: + types: [prover-update] push: - branches: - - 'master' tags: - 'v*.*.*' - pull_request: - branches: - - 'master' jobs: build: @@ -20,7 +18,7 @@ jobs: steps: - name: Check out the repo uses: actions/checkout@v3 - + - name: Set up Docker Buildx uses: docker/setup-buildx-action@v2