build(deps-dev): bump sass from 1.32.13 to 1.83.0 #2423
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: Cloudflare Pages | |
on: [push] | |
jobs: | |
publish: | |
runs-on: ubuntu-20.04 | |
permissions: | |
contents: read | |
deployments: write | |
statuses: write | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- uses: actions/[email protected] | |
with: | |
node-version: 20.x | |
# base: https://github.com/actions/setup-node/issues/214#issuecomment-810829250 | |
- name: Reconfigure git to use HTTPS authentication for npm-dependencies using Git | |
run: git config --global url."https://github.com/".insteadOf ssh://[email protected]/ | |
- run: npm ci | |
- run: SITE_URL="https://piping-ui.org" npm run build | |
- name: Publish to Cloudflare Pages | |
id: cloudflare_pages_deploy | |
uses: cloudflare/pages-action@1 | |
with: | |
accountId: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }} | |
apiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }} | |
projectName: piping-ui | |
directory: ./dist | |
gitHubToken: ${{ secrets.GITHUB_TOKEN }} | |
- name: Add publish URL as commit status | |
uses: actions/github-script@v7 | |
with: | |
script: | | |
// When "pull_request", context.payload.pull_request?.head.sha is expected SHA. | |
// (base: https://github.community/t/github-sha-isnt-the-value-expected/17903/2) | |
const sha = context.payload.pull_request?.head.sha ?? context.sha; | |
await github.rest.repos.createCommitStatus({ | |
owner: context.repo.owner, | |
repo: context.repo.repo, | |
context: 'Cloudflare Pages', | |
description: 'Cloudflare Pages deployment', | |
state: 'success', | |
sha, | |
target_url: "${{ steps.cloudflare_pages_deploy.outputs.url }}", | |
}); |