Skip to content

Merge pull request #3 from MicrosoftCloudEssentials-LearningHub/testi… #31

Merge pull request #3 from MicrosoftCloudEssentials-LearningHub/testi…

Merge pull request #3 from MicrosoftCloudEssentials-LearningHub/testi… #31

Workflow file for this run

name: Deploy static content to Pages
on:
push:
branches:
- main # Set this to your default branch
workflow_dispatch:
permissions:
contents: read
pages: write
id-token: write
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Pages
uses: actions/configure-pages@v5
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: './tool/web-app' # Only upload the static web app directory
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4