Skip to content
This repository has been archived by the owner on Aug 29, 2024. It is now read-only.

ADDED TERMS TO I18N FILES #5

ADDED TERMS TO I18N FILES

ADDED TERMS TO I18N FILES #5

Workflow file for this run

name: GitHub Pages
on:
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# Also does automated updates on PR
push:
branches:
- main
pull_request:
jobs:
deploy:
runs-on: ubuntu-22.04
permissions:
contents: write
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
steps:
- uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: "21"
- name: Cache dependencies
uses: actions/cache@v4
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- run: npm ci
- run: npm run build
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
if: github.ref == 'refs/heads/master'
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./dist