misc(workflow): colored the echos in the deploy documentation step
All checks were successful
Build Documentation and Lint Code / build and lint (push) Successful in 1m14s
All checks were successful
Build Documentation and Lint Code / build and lint (push) Successful in 1m14s
This commit is contained in:
parent
8252393474
commit
44ecbce671
1 changed files with 7 additions and 2 deletions
|
@ -47,15 +47,20 @@ jobs:
|
|||
continue-on-error: true
|
||||
- name: Deploy the documentation to Meli (CoastalCommits Pages)
|
||||
run: |
|
||||
GREEN='\033[0;32m'
|
||||
YELLOW='\033[0;33m'
|
||||
BLUE='\033[0;34m'
|
||||
|
||||
unset GITHUB_TOKEN
|
||||
unset GITLAB_TOKEN
|
||||
|
||||
if [ -n "${{ github.base_ref }}" ]; then
|
||||
release="$(basename "${{ github.base_ref }}")"
|
||||
else
|
||||
release="$(basename "${{ github.ref }}")"
|
||||
fi
|
||||
|
||||
echo "Deploying to Meli on branch $release"
|
||||
echo -e "${YELLOW}Deploying to ${BLUE}Meli ${YELLOW}on branch ${GREEN}$release..."
|
||||
|
||||
npx -p "@getmeli/cli" meli upload ./site \
|
||||
--url "https://pages.coastalcommits.com" \
|
||||
|
@ -64,7 +69,7 @@ jobs:
|
|||
--release "$release/$(git rev-parse HEAD)" \
|
||||
--branch "$release"
|
||||
|
||||
echo "Deployed to Meli on branch $release"
|
||||
echo -e "${YELLOW}Deployed to ${BLUE}Meli ${YELLOW}on branch ${GREEN}$release!"
|
||||
env:
|
||||
GITEA_TOKEN: ${{ secrets.COASTALCOMMITSTOKEN }}
|
||||
continue-on-error: true
|
||||
|
|
Loading…
Reference in a new issue