From 2521741049e25b13c3865225be26c3d63aa84a21 Mon Sep 17 00:00:00 2001 From: ER Date: Sat, 4 Mar 2023 13:02:48 +0200 Subject: [PATCH] feat: enable manually running build --- .github/workflows/build.yml | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index eee0c9d..3b4e0fc 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -4,19 +4,21 @@ on: branches: - main paths-ignore: - - '**.md' - - '**.txt' + - "**.md" + - "**.txt" schedule: - - cron: '20 20 * * *' # 8:20pm everyday + - cron: "20 20 * * *" # 8:20pm everyday push: branches: - main paths-ignore: - - '**.md' - - '**.txt' + - "**.md" + - "**.txt" + workflow-dispatch: + env: - IMAGE_BASE_NAME: base - IMAGE_REGISTRY: ghcr.io/${{ github.repository_owner }} + IMAGE_BASE_NAME: base + IMAGE_REGISTRY: ghcr.io/${{ github.repository_owner }} jobs: push-ghcr: @@ -35,7 +37,7 @@ jobs: - major_version: 37 is_latest_version: true is_stable_version: true - steps: + steps: # Checkout push-to-registry action GitHub repository - name: Checkout Push to Registry action uses: actions/checkout@v3