Merge branch 'main' into updatechecker
Some checks failed
Build Documentation and Lint Code / build and lint (pull_request) Failing after 59s

This commit is contained in:
Seaswimmer 2024-01-06 19:31:15 +00:00
commit ac0c775740

View file

@ -44,13 +44,24 @@ jobs:
run: |
export PATH="$HOME/.local/bin:$PATH"
mkdocs build
continue-on-error: true
- name: Deploy the documentation to Meli (CoastalCommits Pages)
run: |
npx -p "@getmeli/cli" meli upload ./site \
--url "http://pages.coastalcommits.com" \
--site "${{ variables.MELI_SITE }}" \
--token "${{ secrets.MELI_SITE_SECRET }}" \
--release "$GITEA_SHA"
if [ -n "${{ github.base_ref }}" ]; then
release="${{ github.base_ref }}"
else
release="${{ github.ref }}"
fi
echo "Deploying to Meli on branch $release"
npx -p "@getmeli/cli" meli upload ./site \
--url "http://pages.coastalcommits.com" \
--site "${{ variables.MELI_SITE }}" \
--token "${{ secrets.MELI_SITE_SECRET }}" \
--release "$release"
echo "Deployed to Meli on branch $release"
env:
GITEA_TOKEN: ${{ secrets.COASTALCOMMITSTOKEN }}
continue-on-error: true