WIP: Add UpdateChecker cog #14

Draft
cswimr wants to merge 37 commits from updatechecker into main
2 changed files with 8 additions and 7 deletions
Showing only changes of commit 3fb695b2e5 - Show all commits

View file

@ -48,22 +48,22 @@ jobs:
- name: Deploy the documentation to Meli (CoastalCommits Pages)
run: |
if [ -n "${{ github.base_ref }}" ]; then
release="${{ github.base_ref }}"
release="$(basename "{{ github.base_ref }}")"
export GITEA_TOKEN = ${{ secrets.COASTALCOMMITSTOKEN }}
else
release="${{ github.ref }}"
release="$(basename "${{ 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 }}" \
--url "https://pages.coastalcommits.com" \
--site "${{ vars.MELI_SITE_ID }}" \
--token "${{ secrets.MELI_SITE_SECRET }}" \
--release "$release"
--release "$release/$(git rev-parse HEAD)" \
--branch "$release"
echo "Deployed to Meli on branch $release"
env:
GITEA_TOKEN: ${{ secrets.COASTALCOMMITSTOKEN }}
continue-on-error: true
- name: Analysing the code with Pylint
run: |

1
.gitignore vendored
View file

@ -1,2 +1,3 @@
.cache
.vscode
site