Update GMP 2025 (#672) #809
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: Deploy | |
on: | |
push: | |
branches: [ main ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2.3.4 | |
- name: Setup Node.js environment | |
uses: actions/setup-node@main | |
with: | |
node-version: '15.x' | |
- name: Set up Python 3.9 | |
uses: actions/setup-python@v1 | |
with: | |
python-version: 3.9 | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
python -m pip install PyYAML jsonschema | |
- name: Validate yml files | |
run: | | |
python ./scripts/validate | |
- name: Assemble yml files | |
run: | | |
mkdir -p public/conference && cd public/conference | |
awk 1 `find ../../conference -name '*.yml' -not -path '**/types.yml'` > allconf.yml | |
awk 1 `find ../../accept_rates -name '*.yml'` > allacc.yml | |
cp ../../conference/types.yml . | |
cd ../.. | |
- name: Get yarn cache directory path | |
id: yarn-cache-dir-path | |
run: echo "::set-output name=dir::$(yarn cache dir)" | |
- uses: actions/cache@v2 | |
id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`) | |
with: | |
path: ${{ steps.yarn-cache-dir-path.outputs.dir }} | |
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }} | |
restore-keys: | | |
${{ runner.os }}-yarn- | |
- name: Install dependency and build | |
run: | | |
yarn config set strict-ssl false | |
yarn install | |
yarn build | |
- name: Config Git | |
run: | | |
git config --global user.email "me@4f5da2.com" | |
git config --global user.name "0x4f5da2" | |
- name: Deploy | |
run: | | |
cd dist | |
git init | |
git add --all | |
git commit -m "Site Update:`TZ=':Asia/Shanghai' date +' %Y-%m-%d %H:%m:%S'`" | |
git push --force https://${{ secrets.ACCESS_TOKEN }}@github.com/ccfddl/ccfddl.github.io.git master:page |