Skip to content

fix meta and pass correct args for cli #3

fix meta and pass correct args for cli

fix meta and pass correct args for cli #3

Workflow file for this run

name: Publish presentation to Github pages
on:
push:
branches: [main]
env:
BASE: /mlops-and-deployment
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: "20"
- name: Install and build
run: |
npm install
npm run build -- --base ${{ env.BASE }}
- name: Upload artifact
uses: actions/upload-pages-artifact@v1
with:
path: dist/
deploy:
needs: build
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
permissions:
pages: write
id-token: write
runs-on: ubuntu-latest
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v2