fixup! Update <Button> component to use astro-icon #279
Workflow file for this run
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
on: [push] | |
name: Commit preview | |
jobs: | |
generate-preview: | |
name: Generate commit preview | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
deployments: write | |
env: | |
GITHUB_PUBLISH_TOKEN: ${{ secrets.COZY_PAT }} | |
CLOUDFLARE_API_TOKEN: ${{ secrets.CLOUDFLARE_API_TOKEN }} | |
CLOUDFLARE_ACCOUNT_ID: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }} | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
filter: 'blob:none' | |
- name: Setup PNPM and install dependencies | |
uses: pnpm/action-setup@v4 | |
with: | |
version: latest | |
run_install: | | |
- args: [--frozen-lockfile] | |
- name: Build the project | |
run: pnpm run build | |
- name: Upload HTML artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: website-html | |
path: dist | |
retention-days: 1 | |
- name: Upload Functions artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: website-functions | |
path: functions | |
retention-days: 1 | |
- name: Upload package artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: website-package | |
path: | | |
package.json | |
package-lock.json | |
retention-days: 1 | |
- name: Publish to Pages | |
if: env.CLOUDFLARE_API_TOKEN != '' && env.CLOUDFLARE_ACCOUNT_ID != '' | |
uses: cloudflare/pages-action@v1 | |
id: publish | |
with: | |
apiToken: ${{ env.CLOUDFLARE_API_TOKEN }} | |
accountId: ${{ env.CLOUDFLARE_ACCOUNT_ID }} | |
projectName: quiltmc-org | |
directory: dist | |
- name: Add a comment on the commit | |
if: env.GITHUB_PUBLISH_TOKEN != '' | |
uses: peter-evans/commit-comment@5a6f8285b8f2e8376e41fe1b563db48e6cf78c09 # v3.0.0 | |
with: | |
token: ${{ env.GITHUB_PUBLISH_TOKEN }} | |
repository: ${{ github.repository }} | |
sha: ${{ github.sha }} | |
body: "See preview on Cloudflare Pages: ${{ steps.publish.outputs.url }}" |