docs: add CDPG as contributor to landing and ecosystem page (#114) #96
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
# | |
# Copyright (c) 2021 - for information on the respective copyright owner | |
# see the NOTICE file and/or the repository https://github.com/carbynestack/carbynestack.github.io. | |
# | |
# SPDX-License-Identifier: Apache-2.0 | |
# | |
name: Deploy to Github Pages | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
deploy: | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Checkout Source Code | |
uses: actions/checkout@v2 | |
- name: Setup Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: 3.x | |
- name: Install Material for MkDocs | |
run: pip install \ | |
git+https://${{ secrets.MKDOCS_MATERIAL_INSIDERS }}@github.com/squidfunk/[email protected] \ | |
mkdocs-minify-plugin==0.5.0 mkdocs-swagger-ui-tag==0.6.8 | |
- name: Deploy site | |
run: mkdocs gh-deploy --force |