SeaCogs/.forgejo/workflows/workflow.yaml

69 lines
2.1 KiB
YAML
Raw Permalink Normal View History

name: Actions
2024-01-06 13:36:54 -05:00
on:
push:
branches:
- 'main'
pull_request:
jobs:
2024-02-28 10:52:22 -05:00
Lint Code (Ruff & Pylint):
runs-on: docker
2024-08-27 14:03:15 -04:00
container: www.coastalcommits.com/cswimr/actions:seacogs
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install dependencies
run: poetry install --with dev --no-root
- name: Analysing code with Ruff
run: ./.venv/bin/ruff check $(git ls-files '*.py')
continue-on-error: true
2024-02-28 10:52:22 -05:00
- name: Analysing code with Pylint
run: ./.venv/bin/pylint --rcfile=.forgejo/workflows/config/.pylintrc $(git ls-files '*.py')
2024-02-28 10:52:22 -05:00
Build Documentation (MkDocs):
runs-on: docker
2024-08-27 14:03:15 -04:00
container: www.coastalcommits.com/cswimr/actions:seacogs
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
- name: Install dependencies
run: poetry install --with docs --no-root
2024-01-07 07:36:14 -05:00
- name: Set environment variables
uses: actions/env@v2
- 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"
./.venv/bin/mkdocs build -v
- name: Deploy documentation
run: |
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-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
npx -p "@getmeli/cli" meli upload ./site \
--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 }}" \
--release "$CI_ACTION_REF_NAME_SLUG/${{ env.GITHUB_SHA }}" \
--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 }}