mirror of
https://gitee.com/dcren/openiddict-documentation.git
synced 2025-04-05 17:38:03 +08:00
Update build.yml to separate deployment from the build job
This commit is contained in:
parent
8d529fa043
commit
69d596c13a
25
.github/workflows/build.yml
vendored
25
.github/workflows/build.yml
vendored
@ -6,10 +6,14 @@ on:
|
|||||||
tags: [ '*' ]
|
tags: [ '*' ]
|
||||||
pull_request:
|
pull_request:
|
||||||
branches: [ dev, rel/* ]
|
branches: [ dev, rel/* ]
|
||||||
|
workflow_dispatch:
|
||||||
|
|
||||||
|
permissions:
|
||||||
|
contents: write
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
name: ubuntu-latest
|
name: build-ubuntu-latest
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
@ -27,13 +31,28 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
args: docfx.json
|
args: docfx.json
|
||||||
|
|
||||||
|
- name: Publish website artifacts
|
||||||
|
uses: actions/upload-artifact@v3
|
||||||
|
with:
|
||||||
|
name: website
|
||||||
|
path: ./_site
|
||||||
|
|
||||||
|
deploy-github-pages:
|
||||||
|
needs: build
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
if: github.event.repository.fork == false && github.ref == 'refs/heads/dev'
|
||||||
|
steps:
|
||||||
|
- name: Download website
|
||||||
|
uses: actions/download-artifact@v3
|
||||||
|
with:
|
||||||
|
name: website
|
||||||
|
|
||||||
- name: Deploy to GitHub Pages
|
- name: Deploy to GitHub Pages
|
||||||
if: ${{ github.repository_owner == 'openiddict' && (github.ref == 'refs/heads/dev' || startsWith(github.ref, 'refs/heads/rel/') || startsWith(github.ref, 'refs/tags/')) }}
|
|
||||||
uses: JamesIves/github-pages-deploy-action@releases/v3
|
uses: JamesIves/github-pages-deploy-action@releases/v3
|
||||||
with:
|
with:
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
BRANCH: gh-pages
|
BRANCH: gh-pages
|
||||||
FOLDER: _site
|
FOLDER: .
|
||||||
GIT_CONFIG_NAME: OpenIddict Bot
|
GIT_CONFIG_NAME: OpenIddict Bot
|
||||||
GIT_CONFIG_EMAIL: 32257313+openiddict-bot@users.noreply.github.com
|
GIT_CONFIG_EMAIL: 32257313+openiddict-bot@users.noreply.github.com
|
||||||
COMMIT_MESSAGE: Update the documentation pages
|
COMMIT_MESSAGE: Update the documentation pages
|
||||||
|
Loading…
Reference in New Issue
Block a user