Add July 2023 status update. #198
Workflow file for this run
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: CI | |
on: | |
pull_request_target: | |
types: [labeled] | |
jobs: | |
build: | |
name: Build and preview site | |
runs-on: ubuntu-latest | |
if: contains(github.event.pull_request.labels.*.name, 'preview') | |
steps: | |
- uses: actions/checkout@v1 | |
with: | |
ref: "refs/pull/${{ github.event.number }}/merge" # THIS IS INSECURE | |
- name: Set up Python | |
uses: actions/setup-python@v1 | |
with: | |
python-version: '3.X' | |
- name: Install dependencies | |
run: | | |
pip install --upgrade pip | |
pip install --upgrade setuptools wheel | |
pip install -r requirements.txt | |
lektor plugins reinstall | |
- name: Clean | |
run : | | |
lektor clean -O output --yes | |
- name: Build site | |
run: | | |
lektor build --prune -O output | |
# Generated from 'firebase init hosting' | |
- name: Deploy preview | |
uses: FirebaseExtended/action-hosting-deploy@v0 | |
with: | |
repoToken: '${{ secrets.GITHUB_TOKEN }}' | |
firebaseServiceAccount: '${{ secrets.FIREBASE_SERVICE_ACCOUNT_BEEWARE_ORG }}' | |
projectId: beeware-org |