mirror of
https://github.com/web3privacy/data
synced 2024-10-15 18:16:28 +02:00
make deploy to github pages better
This commit is contained in:
parent
7f86434b5c
commit
0a4a0f4616
1 changed files with 41 additions and 30 deletions
59
.github/workflows/deploy.yml
vendored
59
.github/workflows/deploy.yml
vendored
|
@ -1,27 +1,29 @@
|
||||||
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
|
|
||||||
|
|
||||||
|
on:
|
||||||
|
# Trigger the workflow every time you push to the `main` branch
|
||||||
|
# Using a different branch name? Replace `main` with your branch’s 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:
|
permissions:
|
||||||
contents: write
|
contents: read
|
||||||
|
pages: write
|
||||||
|
id-token: write
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build-and-deploy:
|
build:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
concurrency:
|
|
||||||
group: ${{ github.workflow }}-${{ github.ref }}
|
|
||||||
permissions:
|
|
||||||
contents: write
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- name: Checkout your repository using git
|
||||||
with:
|
uses: actions/checkout@v4
|
||||||
fetch-depth: 0
|
|
||||||
|
|
||||||
- uses: denoland/setup-deno@v1
|
- uses: denoland/setup-deno@v1
|
||||||
with:
|
with:
|
||||||
|
@ -43,9 +45,18 @@ 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
|
Loading…
Reference in a new issue