Skip to content

fix(ci): Run CI in the current branch #4

fix(ci): Run CI in the current branch

fix(ci): Run CI in the current branch #4

Workflow file for this run

name: Deployment
on:
push:
# branches:
# - main
permissions:
contents: write
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js
uses: actions/setup-node@v2
with:
node-version: 18.x
- name: Install Packages
run: npm install
- name: Build page
run: turbo run build
- name: Deploy to gh-pages
uses: peaceiris/actions-gh-pages@v3
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./apps/web/dist