Skip to content

Update cd.yml

Update cd.yml #10

Workflow file for this run

# Simple workflow for deploying static content to GitHub Pages
name: Deploy static content to Pages
on:
push:
branches: ["feature/*","develop","main","hotfix/*"]
pull_request:
branches: ["feature/*","develop","main","hotfix/*"]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# Sets the GITHUB_TOKEN permissions to allow deployment to GitHub Pages
permissions:
contents: read
pages: write
id-token: write
# Allow one concurrent deployment
concurrency:
group: 'pages'
cancel-in-progress: true
# ... (previous parts of your workflow)
jobs:
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: 16
- name: List files
run: |
cd D:/a/smart-charger-web/smart-charger-web/Software/smart-charger
ls
- name: Install dependencies
run: |
cd D:/a/smart-charger-web/smart-charger-web/Software/smart-charger
npm install
- name: Build
run: |
cd D:/a/smart-charger-web/smart-charger-web/Software/smart-charger
npm run build
- name: Setup Pages
uses: actions/configure-pages@v3
- name: Upload artifact
uses: actions/upload-artifact@v2
with:
name: dist
path: ./dist
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v2
with:
token: ${{ secrets.GITHUB_TOKEN }}
artifact-name: dist