2024-01-06 17:41:11 +00:00
|
|
|
name: Build Documentation and Lint Code
|
2024-01-06 18:36:54 +00:00
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- 'main'
|
|
|
|
pull_request:
|
2024-01-06 16:01:31 +00:00
|
|
|
|
|
|
|
jobs:
|
2024-01-06 17:41:11 +00:00
|
|
|
build and lint:
|
2024-01-06 16:01:31 +00:00
|
|
|
runs-on: docker
|
2024-01-07 11:48:53 +00:00
|
|
|
container: coastalcommits.com/seaswimmerthefsh/actionscontainers-seacogs:latest
|
2024-01-06 16:01:31 +00:00
|
|
|
steps:
|
|
|
|
- name: Checkout
|
|
|
|
uses: actions/checkout@v3
|
2024-01-06 16:07:26 +00:00
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
2024-01-06 16:01:31 +00:00
|
|
|
- name: Install dependencies
|
|
|
|
run: |
|
2024-01-06 17:41:11 +00:00
|
|
|
poetry install --with docs --with dev --no-root
|
2024-01-06 16:01:31 +00:00
|
|
|
- name: Build the documentation
|
|
|
|
run: |
|
|
|
|
mkdocs build
|
2024-01-06 19:19:34 +00:00
|
|
|
continue-on-error: true
|
2024-01-06 16:38:17 +00:00
|
|
|
- name: Deploy the documentation to Meli (CoastalCommits Pages)
|
2024-01-06 16:01:31 +00:00
|
|
|
run: |
|
2024-01-07 02:33:58 +00:00
|
|
|
GREEN='\033[0;32m'
|
|
|
|
YELLOW='\033[0;33m'
|
|
|
|
BLUE='\033[0;34m'
|
|
|
|
|
2024-01-07 02:25:18 +00:00
|
|
|
unset GITHUB_TOKEN
|
|
|
|
unset GITLAB_TOKEN
|
2024-01-07 02:33:58 +00:00
|
|
|
|
2024-01-07 11:48:53 +00:00
|
|
|
echo "${{ github.ref_name }}"
|
|
|
|
echo "${{ github.base_ref }}"
|
|
|
|
|
2024-01-06 19:19:34 +00:00
|
|
|
if [ -n "${{ github.base_ref }}" ]; then
|
2024-01-07 02:30:58 +00:00
|
|
|
release="$(basename "${{ github.base_ref }}")"
|
2024-01-06 19:19:34 +00:00
|
|
|
else
|
2024-01-07 02:45:41 +00:00
|
|
|
release="$(basename "${{ github.ref_name }}")"
|
2024-01-06 19:19:34 +00:00
|
|
|
fi
|
2024-01-06 22:04:36 +00:00
|
|
|
|
2024-01-07 02:36:01 +00:00
|
|
|
echo "${YELLOW}Deploying to ${BLUE}Meli ${YELLOW}on branch ${GREEN}$release${YELLOW}...\n"
|
2024-01-06 22:04:36 +00:00
|
|
|
|
2024-01-06 19:19:34 +00:00
|
|
|
npx -p "@getmeli/cli" meli upload ./site \
|
2024-01-07 01:05:46 +00:00
|
|
|
--url "https://pages.coastalcommits.com" \
|
2024-01-06 22:02:30 +00:00
|
|
|
--site "${{ vars.MELI_SITE_ID }}" \
|
2024-01-06 19:19:34 +00:00
|
|
|
--token "${{ secrets.MELI_SITE_SECRET }}" \
|
2024-01-07 02:05:52 +00:00
|
|
|
--release "$release/$(git rev-parse HEAD)" \
|
2024-01-06 19:45:10 +00:00
|
|
|
--branch "$release"
|
2024-01-06 22:04:36 +00:00
|
|
|
|
2024-01-07 02:36:01 +00:00
|
|
|
echo "\n${YELLOW}Deployed to ${BLUE}Meli ${YELLOW}on branch ${GREEN}$release${YELLOW}!"
|
2024-01-07 02:25:18 +00:00
|
|
|
env:
|
|
|
|
GITEA_TOKEN: ${{ secrets.COASTALCOMMITSTOKEN }}
|
2024-01-06 17:41:11 +00:00
|
|
|
continue-on-error: true
|
|
|
|
- name: Analysing the code with Pylint
|
|
|
|
run: |
|
2024-01-07 12:17:40 +00:00
|
|
|
pylint --rcfile .forgejo/workflows/config/.pylintrc $(git ls-files '*.py')
|