SeaCogs/.forgejo/workflows/workflow.yaml

82 lines
2.5 KiB
YAML
Raw Normal View History

name: Build Documentation and Lint Code
2024-01-06 13:36:54 -05:00
on:
push:
branches:
- 'main'
pull_request:
jobs:
build and lint:
runs-on: docker
container: catthehacker/ubuntu:act-latest
steps:
- name: Checkout
uses: actions/checkout@v3
2024-01-06 11:07:26 -05:00
with:
fetch-depth: 0
- name: Install apt packages
run: |
apt-get update
apt-get install -y \
libcairo2-dev \
libfreetype6-dev \
libffi-dev \
libjpeg-dev \
libpng-dev \
libz-dev \
pngquant
- name: Setup Node
uses: actions/setup-node@v1
with:
node-version: "12"
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: "3.11"
- name: Install Poetry
run: curl -sSL https://cdn.seaswimmer.cc/go/poetry | python3.11 -
- name: Install dependencies
run: |
export PATH="$HOME/.local/bin:$PATH"
poetry config virtualenvs.create false
poetry install --with docs --with dev --no-root
- name: Build the documentation
run: |
export PATH="$HOME/.local/bin:$PATH"
mkdocs build
continue-on-error: true
- name: Deploy the documentation to Meli (CoastalCommits Pages)
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
if [ -n "${{ github.base_ref }}" ]; then
echo "${{ github.base_ref }}"
2024-01-06 21:30:58 -05:00
release="$(basename "${{ github.base_ref }}")"
else
echo "${{ github.ref_name }}"
release="$(basename "${{ github.ref_name }}")"
fi
2024-01-06 17:04:36 -05:00
2024-01-06 21:36:01 -05:00
echo "${YELLOW}Deploying to ${BLUE}Meli ${YELLOW}on branch ${GREEN}$release${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 }}" \
--token "${{ secrets.MELI_SITE_SECRET }}" \
--release "$release/$(git rev-parse HEAD)" \
2024-01-06 14:45:10 -05:00
--branch "$release"
2024-01-06 17:04:36 -05:00
2024-01-06 21:36:01 -05:00
echo "\n${YELLOW}Deployed to ${BLUE}Meli ${YELLOW}on branch ${GREEN}$release${YELLOW}!"
2024-01-06 21:25:18 -05:00
env:
GITEA_TOKEN: ${{ secrets.COASTALCOMMITSTOKEN }}
continue-on-error: true
- name: Analysing the code with Pylint
run: |
export PATH="$HOME/.local/bin:$PATH"
poetry run pylint --rcfile .forgejo/workflows/config/.pylintrc $(git ls-files '*.py')