Skip to content

Refresh node.js supported versions of azure function core tools #1

Refresh node.js supported versions of azure function core tools

Refresh node.js supported versions of azure function core tools #1

Workflow file for this run

name: Deploy CLI docs
on:
push:
branches: [main]
jobs:
build_and_deploy_job:
runs-on: ubuntu-latest
name: Build and Deploy Job
steps:
- uses: actions/checkout@v4
- run: git config --global user.email "github@wassim.dev"
- run: git config --global user.name "Wassim Chegham"
- name: Setup Node.js environment
uses: actions/setup-node@v3.2.0
with:
node-version: '18.x'
- name: "deploy docs"
run: |
cd docs/www/
npm ci
npm run deploy
env:
GIT_PASS: ${{ secrets.SWA_CLI_DEPLOY_DOCS_GH_PAGES }}
GIT_USER: "manekinekko"