This repository has been archived on 2022-10-07. You can view files and clone it, but cannot push or open issues or pull requests.
2021-03-28 17:03:53 +00:00
|
|
|
name: Deploy website to Skynet
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- website
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Use Node.js
|
|
|
|
uses: actions/setup-node@v2
|
|
|
|
with:
|
|
|
|
node-version: 15.x
|
|
|
|
|
|
|
|
- name: Install dependencies
|
2021-03-28 17:04:51 +00:00
|
|
|
run: npm i --force
|
2021-03-28 17:03:53 +00:00
|
|
|
working-directory: packages/website
|
|
|
|
|
|
|
|
- name: "Build website"
|
|
|
|
run: npm run build
|
|
|
|
working-directory: packages/website
|
|
|
|
|
|
|
|
- name: "Deploy to Skynet"
|
|
|
|
uses: kwypchlo/deploy-to-skynet-action@main
|
|
|
|
with:
|
|
|
|
upload-dir: packages/website/public
|
|
|
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|
2021-03-31 13:17:29 +00:00
|
|
|
registry-seed: ${{ github.event_name == 'push' && github.ref == 'refs/heads/website' && secrets.WEBSITE_REGISTRY_SEED || '' }}
|