minor: Implemented phone locale selector #165
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Deploy GH-Pages | |
on: | |
workflow_dispatch: | |
push: | |
branches: [ docs ] | |
schedule: | |
- cron: '1 18 * * *' # Run at 6:01 pm every day. | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [20.10.0] | |
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/ | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- uses: pnpm/action-setup@v4.0.0 | |
with: | |
version: 8.x.x | |
run_install: false | |
- name: Install dependencies | |
run: pnpm install --frozen-lockfile | |
- name: Build files and bundle them using Parcel | |
run: pnpm run prod-build | |
- name: Add Local Identification Config | |
run: | | |
git config --global user.email "41898282+github-actions[bot]@users.noreply.github.com" | |
git config --global user.name "github-actions" | |
- name: Commit changes to gh-pages | |
run: | | |
git add . | |
git commit -m "Updated parcel build" | |
git push origin +docs:gh-pages --force |