mirror of
https://github.com/DaanVandenBosch/phantasmal-world.git
synced 2025-04-05 07:18:29 +08:00
Added deploy GH action.
This commit is contained in:
parent
13cc04a361
commit
44ab6cbe13
37
.github/workflows/deploy.yml
vendored
Normal file
37
.github/workflows/deploy.yml
vendored
Normal file
@ -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
|
2
.github/workflows/tests.yml
vendored
2
.github/workflows/tests.yml
vendored
@ -19,7 +19,7 @@ jobs:
|
|||||||
path: ~/.yarn
|
path: ~/.yarn
|
||||||
key: ${{ runner.os }}-tests-${{ env.cache-name }}
|
key: ${{ runner.os }}-tests-${{ env.cache-name }}
|
||||||
|
|
||||||
- name: Git checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v2
|
||||||
|
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
|
Loading…
Reference in New Issue
Block a user