Skip to content

[GH Action] Update release tags and commit SHAs for arabica (#1109) #779

[GH Action] Update release tags and commit SHAs for arabica (#1109)

[GH Action] Update release tags and commit SHAs for arabica (#1109) #779

Workflow file for this run

name: Deploy to GitHub Pages
on:
push:
branches:
- main
workflow_dispatch:
jobs:
deploy:
name: Deploy to GitHub Pages
runs-on: ubuntu-latest
env:
CROWDIN_PERSONAL_TOKEN: ${{ secrets.CROWDIN_PERSONAL_TOKEN }}
permissions: write-all
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16.x
cache: npm
- run: yarn install --frozen-lockfile
- run: yarn crowdin:sync
- name: Clean Crowdin Front Matter issues
run: bash clean.sh
shell: bash
- run: yarn build
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./build
keep_files: ${{ github.event_name == 'push' }}
force_orphan: true
# The following lines assign commit authorship to the official
# GH-Actions bot for deploys to `gh-pages` branch:
# https://github.com/actions/checkout/issues/13#issuecomment-724415212
# The GH actions bot is used by default if you didn't specify the two fields.
# You can swap them out with your own user credentials.
cname: docs.celestia.org
user_name: YazzyYaz
user_email: [email protected]