Skip to content

update awards&grants #211

update awards&grants

update awards&grants #211

Workflow file for this run

name: Build and Deploy
on:
push:
branches:
- main
workflow_dispatch:
permissions:
contents: write
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.x
cache: pip
- name: Install Dependencies
run: pip install -r requirements.txt
- name: build
run: mkdocs build
- name: Upload
uses: actions/upload-pages-artifact@v3
with:
path: site
- name: update gh-pages branch
run: |
mv site /tmp/
git config --global user.name "GitHub Actions"
git config --global user.email "[email protected]"
git checkout --orphan gh-pages
git reset --hard
mv /tmp/site/* ./
git add -A
git commit -m "Update gh-pages"
git push origin gh-pages --force
deploy:
needs: build
permissions:
pages: write
id-token: write
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4