nonebot2/.github/workflows/site_deploy.yml

52 lines
1.4 KiB
YAML
Raw Normal View History

name: Build Upload Site
on:
push:
branches: [master, dev]
jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Get yarn cache directory path
id: yarn-cache-dir-path
run: echo "::set-output name=dir::$(yarn cache dir)"
- name: Cache Packages
id: yarn-cache
uses: actions/cache@v2
with:
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
key: ${{ runner.os }}-yarn-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-yarn-
- name: Install and build
run: |
yarn install
yarn build
2021-02-10 03:38:56 +00:00
- name: Get Branch Name
2021-02-10 03:52:34 +00:00
run: echo "BRANCH_NAME=$(echo ${GITHUB_REF#refs/heads/})" >> $GITHUB_ENV
2021-02-10 03:38:56 +00:00
- name: Get Site ID
2021-02-10 03:46:00 +00:00
if: env.BRANCH_NAME == 'master'
run: |
2021-02-10 03:52:34 +00:00
echo "SITE_ID=${{ secrets.PROD_SITE_ID }}" >> $GITHUB_ENV
- name: Get Site ID
2021-02-10 03:46:00 +00:00
if: env.BRANCH_NAME == 'dev'
run: |
2021-02-10 03:52:34 +00:00
echo "SITE_ID=${{ secrets.DEV_SITE_ID }}" >> $GITHUB_ENV
- name: Publish
uses: netlify/actions/cli@master
with:
2021-02-10 04:15:11 +00:00
args: deploy --dir=docs/.vuepress/dist --prod --message="Production ${{ env.BRANCH_NAME }}@${{ github.sha }}"
env:
2021-02-10 03:52:34 +00:00
NETLIFY_SITE_ID: ${{ env.SITE_ID }}
NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }}