mirror of
https://github.com/nix-community/noogle.git
synced 2024-11-23 00:33:12 +03:00
deploy static to cloudflare pages
This commit is contained in:
parent
d4ce8d7f21
commit
fe77278fab
50
.github/workflows/main.yml
vendored
50
.github/workflows/main.yml
vendored
@ -1,10 +1,17 @@
|
||||
name: "build"
|
||||
on:
|
||||
pull_request:
|
||||
push:
|
||||
pull_request_target:
|
||||
branches: [ "main" ]
|
||||
env:
|
||||
cloudflare_project: noogle
|
||||
jobs:
|
||||
deploy:
|
||||
runs-on: ubuntu-latest
|
||||
permissions:
|
||||
contents: read
|
||||
deployments: write
|
||||
pull-requests: write
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- uses: cachix/install-nix-action@v18
|
||||
@ -12,9 +19,40 @@ jobs:
|
||||
extra_nix_config: |
|
||||
access-tokens = github.com=${{ secrets.GITHUB_TOKEN }}
|
||||
- run: nix build
|
||||
- name: Deploy
|
||||
uses: peaceiris/actions-gh-pages@v3
|
||||
if: ${{ github.ref == 'refs/heads/main' }}
|
||||
- name: Publish to Cloudflare Pages
|
||||
if: github.event_name == 'push'
|
||||
uses: cloudflare/pages-action@1
|
||||
with:
|
||||
github_token: ${{ secrets.GITHUB_TOKEN }}
|
||||
publish_dir: ./result/static
|
||||
apiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }}
|
||||
accountId: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }}
|
||||
projectName: ${{ env.cloudflare_project }}
|
||||
directory: ./result/static
|
||||
gitHubToken: ${{ secrets.GITHUB_TOKEN }}
|
||||
- name: Publish to Cloudflare Pages
|
||||
id: publish
|
||||
if: github.event_name == 'pull_request_target'
|
||||
uses: cloudflare/pages-action@1
|
||||
with:
|
||||
apiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }}
|
||||
accountId: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }}
|
||||
projectName: noogle
|
||||
directory: ./result/static
|
||||
gitHubToken: ${{ secrets.GITHUB_TOKEN }}
|
||||
branch: pr-${{ github.event.pull_request.number }}
|
||||
- uses: peter-evans/create-or-update-comment@v2
|
||||
if: github.event_name == 'pull_request_target'
|
||||
with:
|
||||
issue-number: ${{ github.event.pull_request.number }}
|
||||
body: |
|
||||
<!-- DEPLOYMENT_COMMENT -->
|
||||
<table><tr><td><strong>Latest commit:</strong> </td><td>
|
||||
<code>${{ github.event.pull_request.head.sha }}</code>
|
||||
</td></tr>
|
||||
<tr><td><strong>Preview URL:</strong></td><td>
|
||||
<a href='${{ steps.publish.outputs.url }}'>${{ steps.publish.outputs.url }}</a>
|
||||
</td></tr>
|
||||
<tr><td><strong>Branch Preview URL:</strong></td><td>
|
||||
<a href='https://pr-${{ github.event.pull_request.number }}.${{ env.cloudflare_project }}.pages.dev'>https://pr-${{ github.event.pull_request.number }}.${{ env.cloudflare_project }}.pages.dev</a>
|
||||
</td></tr>
|
||||
</table>
|
||||
edit-mode: replace
|
||||
|
Loading…
Reference in New Issue
Block a user