m/cup
1
0
mirror of https://github.com/sergi0g/cup.git synced 2025-11-08 05:03:49 -05:00

Make final documentation changes

This commit is contained in:
Sergio
2024-07-17 14:50:56 +03:00
parent 7b4bf6c8e3
commit 710abd5277
5 changed files with 17 additions and 127 deletions

View File

@@ -24,7 +24,20 @@ jobs:
run: pnpm install
- name: Build
run: pnpm build
- name: Publish
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: docs/out/
deploy:
needs: build
permissions:
pages: write
id-token: write
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4