Skip to content

Commit

Permalink
Merge branch 'main' of github.com:ssc-public/Software-Engineering
Browse files Browse the repository at this point in the history
  • Loading branch information
AmooHashem committed Sep 30, 2024
2 parents cae7acf + 939844c commit 3a1ba46
Showing 1 changed file with 42 additions and 0 deletions.
42 changes: 42 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
# tutorial: https://github.com/LayZeeDK/github-pages-docusaurus
name: documentation

on:
pull_request:
branches: [main]
push:
branches: [main]

jobs:
deploy:
permissions:
id-token: 'write'
pages: write
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
# 👇 Build steps
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: 18.x
cache: yarn
- name: Install dependencies
run: yarn install --frozen-lockfile --non-interactive
- name: Build
run: yarn build
# 👆 Build steps
- name: Setup Pages
uses: actions/configure-pages@v3
- name: Upload artifact
uses: actions/upload-pages-artifact@v2
with:
# 👇 Specify build output path
path: build
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v2

0 comments on commit 3a1ba46

Please sign in to comment.