Skip to content

chore(github-actions): add registry url to release action #135

chore(github-actions): add registry url to release action

chore(github-actions): add registry url to release action #135

Workflow file for this run

name: Github Page
on:
push:
branches:
- main
jobs:
github-page:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Node.js environment
uses: actions/setup-node@v3
with:
node-version: 20
- name: Install dependencies
env :
CI: true
run: |
npm pkg delete scripts.prepare
npm ci
- name: Run build Github Page
run: |
npm run github:page
- name: Deploy GitHub Page 🚀
uses: JamesIves/github-pages-deploy-action@releases/v4
with:
branch: gh-pages
folder: dist
force: false
clean-exclude: pr-preview/
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}