Skip to content

devices: Add initial config for Volla Phone X23 (vidofnir) (#240) #177

devices: Add initial config for Volla Phone X23 (vidofnir) (#240)

devices: Add initial config for Volla Phone X23 (vidofnir) (#240) #177

Workflow file for this run

name: Publish
on:
push:
branches:
- master
jobs:
deploy:
name: Publish
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Use Node.js 18
uses: actions/setup-node@v1
with:
node-version: "18"
- name: Cache node modules
uses: actions/cache@v2
env:
cache-name: cache-node-modules
with:
path: ~/.npm
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-build-${{ env.cache-name }}-
${{ runner.os }}-build-
${{ runner.os }}-
- name: npm install
run: npm install
- name: npm run build
run: npm run build
- name: copy artifacts
run: cp -r build public
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./public
enable_jekyll: true