1.1.0 #7
Workflow file for this run
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: gh-pages | |
on: | |
workflow_dispatch: | |
push: | |
tags: | |
- '*' | |
permissions: | |
contents: write | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Install Node | |
uses: actions/[email protected] | |
- name: Install lib dependencies | |
run: npm install | |
- name: Install app dependencies | |
working-directory: ./apps/soap-metronome | |
run: npm install | |
- name: Build apps | |
working-directory: ./apps/soap-metronome | |
run: npm run build:prod | |
- name: Deploy to gh-pages | |
uses: JamesIves/github-pages-deploy-action@v4 | |
with: | |
folder: apps/soap-metronome/public | |