-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
myname
committed
Oct 16, 2023
1 parent
0674d2f
commit f0d6aeb
Showing
62 changed files
with
164 additions
and
5,575 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,57 +1,57 @@ | ||
name: cd-prod | ||
|
||
on: | ||
workflow_dispatch: | ||
push: | ||
branches: | ||
- master | ||
|
||
env: | ||
PUBLISH_BRANCH: pycourse-page-prod | ||
|
||
jobs: | ||
|
||
deploy: | ||
runs-on: ubuntu-latest | ||
timeout-minutes: 4 | ||
|
||
steps: | ||
|
||
- name: checkout code | ||
uses: actions/checkout@v4 | ||
|
||
- name: setup python | ||
uses: actions/setup-python@v4 | ||
with: | ||
python-version: '3.10' | ||
cache: 'pip' | ||
|
||
- name: caching | ||
uses: actions/cache@v3 | ||
with: | ||
key: ${{ github.ref }} | ||
path: .cache | ||
|
||
- name: install deps | ||
run: | | ||
python -m pip install --upgrade pip | ||
pip install -r requirements.txt | ||
- name: image processing deps | ||
run: | | ||
sudo pip install pillow cairosvg | ||
sudo apt-get install libcairo2-dev libfreetype6-dev libffi-dev libjpeg-dev libpng-dev libz-dev | ||
sudo apt-get install pngquant | ||
- name: deploy mkdocs | ||
env: | ||
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
GOOGLE_ANALYTICS_KEY: ${{ secrets.GOOGLE_ANALYTICS_KEY }} | ||
run: mkdocs build -v | ||
|
||
- name: update publish dir to build branch | ||
uses: peaceiris/[email protected] | ||
with: | ||
github_token: ${{ secrets.GITHUB_TOKEN }} | ||
publish_branch: ${{ env.PUBLISH_BRANCH }} | ||
publish_dir: ./site | ||
# name: cd-prod | ||
|
||
# on: | ||
# workflow_dispatch: | ||
# push: | ||
# branches: | ||
# - master | ||
|
||
# env: | ||
# PUBLISH_BRANCH: pycourse-page-prod | ||
|
||
# jobs: | ||
|
||
# deploy: | ||
# runs-on: ubuntu-latest | ||
# timeout-minutes: 4 | ||
|
||
# steps: | ||
|
||
# - name: checkout code | ||
# uses: actions/checkout@v4 | ||
|
||
# - name: setup python | ||
# uses: actions/setup-python@v4 | ||
# with: | ||
# python-version: '3.10' | ||
# cache: 'pip' | ||
|
||
# - name: caching | ||
# uses: actions/cache@v3 | ||
# with: | ||
# key: ${{ github.ref }} | ||
# path: .cache | ||
|
||
# - name: install deps | ||
# run: | | ||
# python -m pip install --upgrade pip | ||
# pip install -r requirements.txt | ||
|
||
# - name: image processing deps | ||
# run: | | ||
# sudo pip install pillow cairosvg | ||
# sudo apt-get install libcairo2-dev libfreetype6-dev libffi-dev libjpeg-dev libpng-dev libz-dev | ||
# sudo apt-get install pngquant | ||
|
||
# - name: deploy mkdocs | ||
# env: | ||
# GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
# GOOGLE_ANALYTICS_KEY: ${{ secrets.GOOGLE_ANALYTICS_KEY }} | ||
# run: mkdocs build -v | ||
|
||
# - name: update publish dir to build branch | ||
# uses: peaceiris/[email protected] | ||
# with: | ||
# github_token: ${{ secrets.GITHUB_TOKEN }} | ||
# publish_branch: ${{ env.PUBLISH_BRANCH }} | ||
# publish_dir: ./site |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,59 +1,59 @@ | ||
name: cd-stage | ||
|
||
on: | ||
workflow_dispatch: | ||
push: | ||
branches: | ||
- 'dependabot/**' | ||
|
||
env: | ||
PUBLISH_BRANCH: pycourse-page-stage | ||
|
||
jobs: | ||
|
||
deploy: | ||
runs-on: ubuntu-latest | ||
timeout-minutes: 4 | ||
permissions: | ||
contents: write | ||
environment: | ||
name: pycourse-page-stage | ||
url: https://pycourse-page-stage.netlify.app/ | ||
|
||
steps: | ||
|
||
- name: checkout code | ||
uses: actions/checkout@v4 | ||
|
||
- name: setup python | ||
uses: actions/setup-python@v4 | ||
with: | ||
python-version: '3.10' | ||
cache: 'pip' | ||
|
||
- name: caching | ||
uses: actions/cache@v3 | ||
with: | ||
key: ${{ github.ref }} | ||
path: .cache | ||
|
||
- name: install deps | ||
run: | | ||
python -m pip install --upgrade pip | ||
pip install -r requirements.txt | ||
- name: image processing deps | ||
run: | | ||
sudo pip install pillow cairosvg | ||
sudo apt-get install libcairo2-dev libfreetype6-dev libffi-dev libjpeg-dev libpng-dev libz-dev | ||
sudo apt-get install pngquant | ||
- name: deploy mkdocs | ||
run: mkdocs build -v | ||
|
||
- name: update publish dir to build branch | ||
uses: peaceiris/[email protected] | ||
with: | ||
github_token: ${{ secrets.GITHUB_TOKEN }} | ||
publish_branch: ${{ env.PUBLISH_BRANCH }} | ||
publish_dir: ./site | ||
# name: cd-stage | ||
|
||
# on: | ||
# workflow_dispatch: | ||
# push: | ||
# branches: | ||
# - 'dependabot/**' | ||
|
||
# env: | ||
# PUBLISH_BRANCH: pycourse-page-stage | ||
|
||
# jobs: | ||
|
||
# deploy: | ||
# runs-on: ubuntu-latest | ||
# timeout-minutes: 4 | ||
# permissions: | ||
# contents: write | ||
# environment: | ||
# name: pycourse-page-stage | ||
# url: https://pycourse-page-stage.netlify.app/ | ||
|
||
# steps: | ||
|
||
# - name: checkout code | ||
# uses: actions/checkout@v4 | ||
|
||
# - name: setup python | ||
# uses: actions/setup-python@v4 | ||
# with: | ||
# python-version: '3.10' | ||
# cache: 'pip' | ||
|
||
# - name: caching | ||
# uses: actions/cache@v3 | ||
# with: | ||
# key: ${{ github.ref }} | ||
# path: .cache | ||
|
||
# - name: install deps | ||
# run: | | ||
# python -m pip install --upgrade pip | ||
# pip install -r requirements.txt | ||
|
||
# - name: image processing deps | ||
# run: | | ||
# sudo pip install pillow cairosvg | ||
# sudo apt-get install libcairo2-dev libfreetype6-dev libffi-dev libjpeg-dev libpng-dev libz-dev | ||
# sudo apt-get install pngquant | ||
|
||
# - name: deploy mkdocs | ||
# run: mkdocs build -v | ||
|
||
# - name: update publish dir to build branch | ||
# uses: peaceiris/[email protected] | ||
# with: | ||
# github_token: ${{ secrets.GITHUB_TOKEN }} | ||
# publish_branch: ${{ env.PUBLISH_BRANCH }} | ||
# publish_dir: ./site |
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
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.