2024-01-13 09:12:51 -05:00
|
|
|
name: Actions
|
2024-01-06 13:36:54 -05:00
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- 'main'
|
|
|
|
pull_request:
|
2024-01-06 11:01:31 -05:00
|
|
|
|
|
|
|
jobs:
|
2024-02-28 10:52:22 -05:00
|
|
|
Lint Code (Ruff & Pylint):
|
2024-01-13 09:12:51 -05:00
|
|
|
runs-on: docker
|
2024-02-14 14:04:19 -05:00
|
|
|
container: www.coastalcommits.com/seaswimmerthefsh/actionscontainers-seacogs:latest
|
2024-01-13 09:12:51 -05:00
|
|
|
steps:
|
|
|
|
- name: Checkout
|
|
|
|
uses: actions/checkout@v3
|
|
|
|
|
|
|
|
- name: Install dependencies
|
|
|
|
run: poetry install --with dev --no-root
|
|
|
|
|
2024-02-14 10:35:57 -05:00
|
|
|
- name: Analysing code with Ruff
|
2024-03-07 21:33:12 -05:00
|
|
|
run: ./.venv/bin/ruff check $(git ls-files '*.py')
|
2024-02-28 11:30:04 -05:00
|
|
|
continue-on-error: true
|
2024-01-13 09:12:51 -05:00
|
|
|
|
2024-02-28 10:52:22 -05:00
|
|
|
- name: Analysing code with Pylint
|
2024-03-07 21:33:12 -05:00
|
|
|
run: ./.venv/bin/pylint --rcfile=.forgejo/workflows/config/.pylintrc $(git ls-files '*.py')
|
2024-02-28 10:52:22 -05:00
|
|
|
|
2024-01-13 09:12:51 -05:00
|
|
|
Build Documentation (MkDocs):
|
2024-01-06 11:01:31 -05:00
|
|
|
runs-on: docker
|
2024-02-14 14:04:19 -05:00
|
|
|
container: www.coastalcommits.com/seaswimmerthefsh/actionscontainers-seacogs:latest
|
2024-01-06 11:01:31 -05:00
|
|
|
steps:
|
|
|
|
- name: Checkout
|
|
|
|
uses: actions/checkout@v3
|
2024-01-06 11:07:26 -05:00
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
2024-01-07 07:36:14 -05:00
|
|
|
|
2024-01-06 11:01:31 -05:00
|
|
|
- name: Install dependencies
|
2024-01-13 09:12:51 -05:00
|
|
|
run: poetry install --with docs --no-root
|
2024-01-07 07:36:14 -05:00
|
|
|
|
2024-01-13 09:12:51 -05:00
|
|
|
- name: Set environment variables
|
2024-01-07 07:49:44 -05:00
|
|
|
uses: actions/env@v2
|
|
|
|
|
2024-01-13 09:12:51 -05:00
|
|
|
- name: Build documentation
|
|
|
|
run: |
|
|
|
|
export SITE_URL="https://$CI_ACTION_REF_NAME_SLUG.seacogs.coastalcommits.com"
|
|
|
|
export EDIT_URI="src/branch/$CI_ACTION_REF_NAME/.docs"
|
2024-03-07 21:33:12 -05:00
|
|
|
./.venv/bin/mkdocs build -v
|
2024-01-13 09:12:51 -05:00
|
|
|
|
|
|
|
- name: Deploy documentation
|
2024-01-06 11:01:31 -05:00
|
|
|
run: |
|
2024-01-06 21:33:58 -05:00
|
|
|
GREEN='\033[0;32m'
|
|
|
|
YELLOW='\033[0;33m'
|
|
|
|
BLUE='\033[0;34m'
|
|
|
|
|
2024-01-06 21:25:18 -05:00
|
|
|
unset GITHUB_TOKEN
|
|
|
|
unset GITLAB_TOKEN
|
2024-01-06 21:33:58 -05:00
|
|
|
|
2024-06-11 16:50:15 -04:00
|
|
|
echo "${YELLOW}Deploying to ${BLUE}Meli ${YELLOW}on branch ${GREEN}$CI_ACTION_REF_NAME_SLUG${YELLOW}...\n"
|
2024-01-06 17:04:36 -05:00
|
|
|
|
2024-01-06 14:19:34 -05:00
|
|
|
npx -p "@getmeli/cli" meli upload ./site \
|
2024-01-06 20:05:46 -05:00
|
|
|
--url "https://pages.coastalcommits.com" \
|
2024-01-06 17:02:30 -05:00
|
|
|
--site "${{ vars.MELI_SITE_ID }}" \
|
2024-06-11 16:39:04 -04:00
|
|
|
--token "${{ secrets.MELI_SECRET }}" \
|
2024-01-07 07:53:32 -05:00
|
|
|
--release "$CI_ACTION_REF_NAME_SLUG/${{ env.GITHUB_SHA }}" \
|
2024-01-07 07:49:44 -05:00
|
|
|
--branch "$CI_ACTION_REF_NAME_SLUG"
|
2024-01-06 17:04:36 -05:00
|
|
|
|
2024-06-11 16:50:15 -04:00
|
|
|
echo "\n${YELLOW}Deployed to ${BLUE}Meli ${YELLOW}on branch ${GREEN}$CI_ACTION_REF_NAME_SLUG${YELLOW}!"
|
|
|
|
echo "${GREEN}https://$CI_ACTION_REF_NAME_SLUG.seacogs.coastalcommits.com/"
|
2024-01-06 21:25:18 -05:00
|
|
|
env:
|
|
|
|
GITEA_TOKEN: ${{ secrets.COASTALCOMMITSTOKEN }}
|