From 8b20b35a8dac09f9360da8152b73f05242d80735 Mon Sep 17 00:00:00 2001 From: Louis Bailleau Date: Sun, 21 Apr 2024 14:17:16 +0200 Subject: [PATCH] ci: allow to manually trigger build workflow --- .github/workflows/build.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index c096168..ff04083 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -4,10 +4,12 @@ on: push: branches: - main + workflow_dispatch: env: REGISTRY: ghcr.io IMAGE_NAME: ${{ github.repository }} + PLAUSIBLE_ENDPOINT: ${{ vars.PLAUSIBLE_ENDPOINT }} jobs: build-and-publish: @@ -57,4 +59,4 @@ jobs: tags: ${{ steps.meta.outputs.tags }} labels: ${{ steps.meta.outputs.labels }} build-args: | - PLAUSIBLE_ENDPOINT=${{ vars.PLAUSIBLE_ENDPOINT }} + PLAUSIBLE_ENDPOINT=${{ env.PLAUSIBLE_ENDPOINT }}