make deploy to github pages better

This commit is contained in:
tree🌴 2024-03-04 15:38:34 +01:00
parent 7f86434b5c
commit 0a4a0f4616

View file

@ -1,28 +1,30 @@
name: Build and Deploy name: Deploy to GitHub Pages
on:
push:
branches:
- main # Set a branch to deploy
pull_request:
workflow_run:
workflows: ["Synchronize data"]
types:
- completed
permissions:
contents: write
jobs:
build-and-deploy:
runs-on: ubuntu-latest
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
permissions:
contents: write
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
on:
# Trigger the workflow every time you push to the `main` branch
# Using a different branch name? Replace `main` with your branchs name
push:
branches: [ main ]
# Allows you to run this workflow manually from the Actions tab on GitHub.
workflow_dispatch:
workflow_run:
workflows: ["Synchronize data"]
types:
- completed
# Allow this job to clone the repo and create a page deployment
permissions:
contents: read
pages: write
id-token: write
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout your repository using git
uses: actions/checkout@v4
- uses: denoland/setup-deno@v1 - uses: denoland/setup-deno@v1
with: with:
deno-version: v1.x deno-version: v1.x
@ -42,10 +44,19 @@ jobs:
- name: Add custom domain - name: Add custom domain
run: "touch dist/CNAME && echo \"data.web3privacy.info\" >> dist/CNAME" run: "touch dist/CNAME && echo \"data.web3privacy.info\" >> dist/CNAME"
- name: Deploy - name: Upload Pages artifact
uses: peaceiris/actions-gh-pages@v3 uses: actions/upload-pages-artifact@v3
if: ${{ github.ref == 'refs/heads/main' }}
with: with:
github_token: ${{ secrets.GITHUB_TOKEN }} path: ./dist
publish_dir: ./dist
deploy:
needs: build
runs-on: ubuntu-latest
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4