refactor: update date format in TravelForm #114
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: deploy gh-pages | |
permissions: | |
contents: write | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
my-job: | |
name: deploy | |
runs-on: ubuntu-latest | |
env: | |
VITE_APP_SUPABASE_URL: ${{ secrets.VITE_APP_SUPABASE_URL }} | |
VITE_APP_SUPABASE_KEY: ${{ secrets.VITE_APP_SUPABASE_KEY }} | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: oven-sh/setup-bun@v1 | |
- run: bun install | |
- run: bun run predeploy | |
- name: Deploy | |
uses: JamesIves/github-pages-deploy-action@v4 | |
with: | |
folder: dist | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |