Skip to content

build-deploy-production-manual #19

build-deploy-production-manual

build-deploy-production-manual #19

name: build-deploy-production-manual
on:
workflow_dispatch:
jobs:
build-production:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16
- run: npm install
- run: npm run prod:build
- uses: actions/upload-artifact@v3
with:
name: dist
path: |
dist
deploy-production:
needs: build-production
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
- uses: actions/download-artifact@v3
with:
name: dist
path: |
dist
- name: Deploy 🚀
uses: JamesIves/github-pages-deploy-action@v4.4.3
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
BRANCH: gh-pages # The branch the action should deploy to.
FOLDER: dist # The folder the action should deploy.
CLEAN: true # Automatically remove deleted files from the deploy branch