WIP: Add UpdateChecker cog #14

Draft
cswimr wants to merge 37 commits from updatechecker into main
Showing only changes of commit c9916f7ea7 - Show all commits

View file

@ -47,15 +47,20 @@ jobs:
continue-on-error: true continue-on-error: true
- name: Deploy the documentation to Meli (CoastalCommits Pages) - name: Deploy the documentation to Meli (CoastalCommits Pages)
run: | run: |
GREEN='\033[0;32m'
YELLOW='\033[0;33m'
BLUE='\033[0;34m'
unset GITHUB_TOKEN unset GITHUB_TOKEN
unset GITLAB_TOKEN unset GITLAB_TOKEN
if [ -n "${{ github.base_ref }}" ]; then if [ -n "${{ github.base_ref }}" ]; then
release="$(basename "{{ github.base_ref }}")" release="$(basename "${{ github.base_ref }}")"
else else
release="$(basename "${{ github.ref }}")" release="$(basename "${{ github.ref }}")"
fi fi
echo "Deploying to Meli on branch $release" echo "${YELLOW}Deploying to ${BLUE}Meli ${YELLOW}on branch ${GREEN}$release${YELLOW}...\n"
npx -p "@getmeli/cli" meli upload ./site \ npx -p "@getmeli/cli" meli upload ./site \
--url "https://pages.coastalcommits.com" \ --url "https://pages.coastalcommits.com" \
@ -64,7 +69,7 @@ jobs:
--release "$release/$(git rev-parse HEAD)" \ --release "$release/$(git rev-parse HEAD)" \
--branch "$release" --branch "$release"
echo "Deployed to Meli on branch $release" echo "\n${YELLOW}Deployed to ${BLUE}Meli ${YELLOW}on branch ${GREEN}$release${YELLOW}!"
env: env:
GITEA_TOKEN: ${{ secrets.COASTALCOMMITSTOKEN }} GITEA_TOKEN: ${{ secrets.COASTALCOMMITSTOKEN }}
continue-on-error: true continue-on-error: true