Something went wrong. Try again.
[READ-ONLY] Mirror of https://github.com/Savy011/savy011.github.io. my work website
Something went wrong. Try again.
628 B · 30 lines
YAML
at main
123456789101112131415161718192021222324252627282930name: Deploy to GitHub Pages
on: push: branches: [ main ] workflow_dispatch:
permissions: contents: read pages: write id-token: write
jobs: build: runs-on: ubuntu-latest steps: - name: Checkout your repository using git uses: actions/checkout@v5 - name: Install, build, and upload your site uses: withastro/action@v5 deploy: needs: build runs-on: ubuntu-latest environment: name: github-pages url: ${{ steps.deployment.outputs.page_url }} steps: - name: Deploy to GitHub Pages id: deployment uses: actions/deploy-pages@v4