From 0215790d9085fa84165b59883dc2d560fa80be10 Mon Sep 17 00:00:00 2001 From: Anatoly <33553182+anatolykopyl@users.noreply.github.com> Date: Sat, 7 Aug 2021 17:08:18 +0300 Subject: [PATCH] Create blank.yml --- .github/workflows/blank.yml | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 .github/workflows/blank.yml diff --git a/.github/workflows/blank.yml b/.github/workflows/blank.yml new file mode 100644 index 0000000..b6b6ebe --- /dev/null +++ b/.github/workflows/blank.yml @@ -0,0 +1,32 @@ +name: CI and DI + +on: + push: + branches: [ master ] + pull_request: + branches: [ master ] + + workflow_dispatch: + +jobs: + build-deploy: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v2 + + - name: Set-up Node + uses: actions/setup-node@v1 + with: + node-version: "14.2.x" + + - run: npm install + + - name: Deploy + uses: crazy-max/ghaction-github-pages@v1 + with: + target_branch: gh-pages + build_dir: dist + env: + GITHUB_TOKEN: ${{secrets.GITHUB_REPO_TOKEN}} +