From 44ab6cbe138eb81a9d311459789af76b9feb6103 Mon Sep 17 00:00:00 2001 From: Daan Vanden Bosch Date: Tue, 29 Sep 2020 18:17:30 +0200 Subject: [PATCH] Added deploy GH action. --- .github/workflows/deploy.yml | 37 ++++++++++++++++++++++++++++++++++++ .github/workflows/tests.yml | 2 +- 2 files changed, 38 insertions(+), 1 deletion(-) create mode 100644 .github/workflows/deploy.yml diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml new file mode 100644 index 00000000..a3c9c061 --- /dev/null +++ b/.github/workflows/deploy.yml @@ -0,0 +1,37 @@ +name: Deploy + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - name: Yarn cache + uses: actions/cache@v2 + env: + cache-name: yarn-cache + with: + path: ~/.yarn + key: ${{ runner.os }}-deploy-${{ env.cache-name }} + + - name: Checkout + uses: actions/checkout@v2 + with: + persist-credentials: false + + - name: Install dependencies + uses: CultureHQ/actions-yarn@v1.0.1 + with: + args: install + + - name: Build + uses: CultureHQ/actions-yarn@v1.0.1 + with: + args: build + + - name: Deploy + uses: JamesIves/github-pages-deploy-action@3.6.2 + with: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + BRANCH: gh-pages + FOLDER: dist + CLEAN: true diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 88b499eb..c3699e1f 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -19,7 +19,7 @@ jobs: path: ~/.yarn key: ${{ runner.os }}-tests-${{ env.cache-name }} - - name: Git checkout + - name: Checkout uses: actions/checkout@v2 - name: Install dependencies