Skip to content
This repository has been archived by the owner on Mar 10, 2024. It is now read-only.

Update README.md

Update README.md #25

Workflow file for this run

name: Deploy
on:
push:
branches: [ main ]
workflow_dispatch:
concurrency:
group: "pages"
cancel-in-progress: true
jobs:
build:
timeout-minutes: 2
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install, build, upload
uses: withastro/action@v0
with:
node-version: 18
deploy:
needs: build
timeout-minutes: 2
runs-on: ubuntu-latest
permissions:
pages: write
id-token: write
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v1