SeaCogs/.forgejo/workflows/workflow.yaml

70 lines
2.3 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: coastalcommits.com/seaswimmerthefsh/actionscontainers-seacogs:latest
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-07 07:33:10 -05:00
- name: Set Environment Variable
2024-01-07 07:36:43 -05:00
- uses: actions/env@v2
2024-01-07 07:36:14 -05:00
run: echo "BRANCH=$CI_ACTION_REF_NAME_SLUG" >> $GITHUB_ENV
- name: Install dependencies
2024-01-07 07:36:14 -05:00
run: poetry install --with docs --with dev --no-root
- name: Build the documentation
2024-01-07 07:36:14 -05:00
run: mkdocs build
continue-on-error: true
2024-01-07 07:36:14 -05:00
- 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
2024-01-07 07:33:10 -05:00
2024-01-07 07:36:14 -05:00
echo "branch = ${{ branch }}"
2024-01-07 07:21:35 -05:00
echo "github.ref = ${{ github.ref }}"
echo "github.base_ref = ${{ github.base_ref }}"
2024-01-07 07:24:31 -05:00
echo "github.ref_name = ${{ github.ref_name }}"
2024-01-07 07:36:14 -05:00
echo "(Basename) branch = $(basename "${{ branch }}")"
2024-01-07 07:21:35 -05:00
echo "(Basename) github.ref = $(basename "${{ github.ref }}")"
echo "(Basename) github.base_ref = $(basename "${{ github.base_ref }}")"
2024-01-07 07:24:31 -05:00
echo "(Basename) github.ref_name = $(basename "${{ github.ref_name }}")"
if [ -n "${{ github.base_ref }}" ]; then
2024-01-06 21:30:58 -05:00
release="$(basename "${{ github.base_ref }}")"
else
2024-01-07 07:20:15 -05:00
release="$(basename "${{ github.ref }}")"
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
2024-01-07 07:36:14 -05:00
- name: Analysing the code with Pylint
2024-01-07 07:36:14 -05:00
run: pylint --rcfile .forgejo/workflows/config/.pylintrc $(git ls-files '*.py')