Clean up Dockerfile for baremetal and ECS deployments (#4398) #1372
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Publish docs via GitHub Pages | |
on: | |
push: | |
branches: | |
- development | |
# Commented paths to avoid skipping required workflow | |
# See https://github.community/t/feature-request-conditional-required-checks/16761 | |
# paths: | |
# - .github/workflows/docs.yml | |
# - "docs/**" | |
jobs: | |
build: | |
name: Deploy docs | |
runs-on: buildjet-4vcpu-ubuntu-2204 | |
steps: | |
- name: Checkout main | |
uses: actions/checkout@v4 | |
- name: Deploy docs | |
uses: mhausenblas/mkdocs-deploy-gh-pages@master | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
CUSTOM_DOMAIN: gossamer.chainsafe.io | |
CONFIG_FILE: docs/mkdocs.yml | |
EXTRA_PACKAGES: build-base |