Skip to content

Update version to 0.4.1 #19

Update version to 0.4.1

Update version to 0.4.1 #19

Workflow file for this run

name: Deploy Site
on:
push:
branches:
- "main"
jobs:
deploy:
permissions:
contents: read
pages: write
id-token: write
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
env:
TARGET: site
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/configure-pages@v4
- name: Build
run: bash deploy.sh ${{ env.TARGET }}
- uses: actions/upload-pages-artifact@v3
with:
path: ${{ env.TARGET }}
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4