fix(workflow): hopefully fixed deploying documentation on pull requests
This commit is contained in:
parent
243cec20e7
commit
828c8a540d
1 changed files with 12 additions and 5 deletions
|
@ -44,13 +44,20 @@ jobs:
|
|||
run: |
|
||||
export PATH="$HOME/.local/bin:$PATH"
|
||||
mkdocs build
|
||||
continue-on-error: true
|
||||
- name: Deploy the documentation to Meli (CoastalCommits Pages)
|
||||
run: |
|
||||
if [ -n "${{ github.base_ref }}" ]; then
|
||||
release="${{ github.base_ref }}"
|
||||
else
|
||||
release="${{ github.ref }}"
|
||||
fi
|
||||
|
||||
npx -p "@getmeli/cli" meli upload ./site \
|
||||
--url "http://pages.coastalcommits.com" \
|
||||
--site "${{ variables.MELI_SITE }}" \
|
||||
--token "${{ secrets.MELI_SITE_SECRET }}" \
|
||||
--release "$GITEA_SHA"
|
||||
--release "$release"
|
||||
env:
|
||||
GITEA_TOKEN: ${{ secrets.COASTALCOMMITSTOKEN }}
|
||||
continue-on-error: true
|
||||
|
|
Loading…
Reference in a new issue