From 18e7a8b3250fc78db05f89af5e5a548d77093b5e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hern=C3=A1n=20Lucas=20Pereira?= Date: Tue, 23 Aug 2022 11:16:24 -0300 Subject: [PATCH] Enabled setup branch in build process --- .github/workflows/gh-pages.yml | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/.github/workflows/gh-pages.yml b/.github/workflows/gh-pages.yml index 2840d13..df6430f 100644 --- a/.github/workflows/gh-pages.yml +++ b/.github/workflows/gh-pages.yml @@ -2,7 +2,7 @@ name: public-build on: push: - branches: [main] + branches: [main, setup] workflow_dispatch: jobs: @@ -12,7 +12,17 @@ jobs: steps: - uses: actions/checkout@v2 with: + ref: 'main' fetch-depth: 0 + + - uses: actions/checkout@v2 + with: + ref: 'setup' + fetch-depth: 0 + path: _setup + + - name: Insert setup branch + run: cp -r _setup/* . - name: Setup Node.js uses: actions/setup-node@v1