Update deploy.yml #5
This file contains hidden or 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 Website | |
| on: | |
| push: | |
| branches: ["v2"] | |
| workflow_dispatch: | |
| permissions: write-all | |
| concurrency: | |
| group: "pages" | |
| cancel-in-progress: false | |
| jobs: | |
| website: | |
| environment: | |
| name: github-pages | |
| url: ${{ steps.deployment.outputs.page_url }} | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout Code | |
| uses: actions/checkout@v3 | |
| - name: Setup Bun | |
| uses: oven-sh/setup-bun@v2 | |
| with: | |
| bun-version: latest | |
| - name: Build Website | |
| run: | | |
| find . -name "build.js" -type f -exec echo "Running: {}" \; -exec bun run {} \; | |
| - name: Cleanup Builds | |
| run: | | |
| find . -name "build.js" -type f -delete | |
| find . -name "*.template.html" -type f -delete | |
| - name: Install Dependencies | |
| run: bun install | |
| - name: Minify | |
| run: bun run ./.github/minify.js | |
| - name: Cleanup Bun | |
| run: | | |
| rm -rf node_modules | |
| rm package.json | |
| rm bun.lock | |
| - name: Create Artifact | |
| uses: actions/upload-pages-artifact@v3 | |
| with: | |
| name: website | |
| path: ./ | |
| - name: Setup Pages | |
| uses: actions/configure-pages@v3 | |
| - name: Deploy to GitHub Pages | |
| id: deployment | |
| uses: actions/deploy-pages@v4 | |
| with: | |
| artifact_name: website |