Skip to content

fix(ci): remove nx cloud #3

fix(ci): remove nx cloud

fix(ci): remove nx cloud #3

Workflow file for this run

name: Deploy
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: write
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
steps:
- uses: actions/checkout@v3
- name: Use Node.js
uses: actions/setup-node@v4.0.2
with:
node-version: '18'
- name: Install dependencies
run: npm i
- name: Build
run: npm run predeploy
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
if: github.ref == 'refs/heads/main'
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./dist/apps