From 490a162b72e2767d64e3ca0c830481ac7bbedb4d Mon Sep 17 00:00:00 2001 From: desjoerd Date: Tue, 13 Feb 2024 09:02:54 +0100 Subject: [PATCH] Add workflow_dispatch to build --- .github/workflows/build.yml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 14e0189..6c3b07c 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -4,6 +4,7 @@ on: push: branches: - main + workflow_dispatch: jobs: build: @@ -13,20 +14,20 @@ jobs: uses: styfle/cancel-workflow-action@0.10.0 with: access_token: ${{ github.token }} - + - name: ⬇️ Checkout repo uses: actions/checkout@v3 - + - name: ⎔ Setup node uses: actions/setup-node@v3 with: node-version: 18 - + - name: 📥 Download deps uses: bahmutov/npm-install@v1 with: working-directory: . - + - name: 🏗️ Build run: npm run build