Skip to content

Update

Update #504

Workflow file for this run

name: Update
on:
push:
branches: [master]
pull_request:
branches: [master]
schedule:
- cron: "0 0 * * *" # At every day 00:00(UTC).
workflow_dispatch:
permissions:
contents: write
pull-requests: write
actions: write
jobs:
build:
strategy:
matrix:
node-version: [18.x]
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: pnpm/action-setup@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: pnpm install
- name: Check
run: pnpm run check
- name: Build
run: |
pnpm start
cp README.md ./build/README.md
env:
TOLGEE_API_KEY: ${{ secrets.TOLGEE_API_KEY }}
- name: Deploy gh-pages
if: github.ref == 'refs/heads/master'
# See https://github.com/peaceiris/actions-gh-pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
user_name: "github-actions[bot]"
user_email: "github-actions[bot]@users.noreply.github.com"
enable_jekyll: true
publish_dir: build
exclude_assets: "*.zip"
- name: Upload artifacts
if: github.ref != 'refs/heads/master'
# See https://github.com/actions/upload-artifact
uses: actions/upload-artifact@v3
with:
path: ./build