2022-04-26 14:32:52 -04:00
|
|
|
name: 🔂 Surge PR Preview
|
|
|
|
|
|
|
|
on:
|
|
|
|
pull_request_target:
|
2022-04-27 00:13:24 -04:00
|
|
|
types: [opened, synchronize, reopened]
|
2022-05-02 11:42:09 -04:00
|
|
|
|
|
|
|
# Ensures that only one mirror task will run at a time.
|
|
|
|
concurrency:
|
|
|
|
group: surge-sh
|
2022-04-26 14:32:52 -04:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
preview:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
permissions:
|
|
|
|
issues: write
|
|
|
|
pull-requests: write
|
|
|
|
contents: write
|
|
|
|
environment: preview
|
|
|
|
steps:
|
|
|
|
- name: Checkout repository
|
|
|
|
uses: actions/checkout@v3
|
|
|
|
with:
|
|
|
|
fetch-depth: '0'
|
|
|
|
ref: ${{github.event.pull_request.head.ref}}
|
|
|
|
repository: ${{github.event.pull_request.head.repo.full_name}}
|
2022-04-26 22:36:58 -04:00
|
|
|
ssh-key: ${{ secrets.ACTIONS_SSH_KEY }}
|
|
|
|
submodules: 'true'
|
2022-04-26 14:32:52 -04:00
|
|
|
|
|
|
|
- name: Set up Python runtime
|
|
|
|
uses: actions/setup-python@v3
|
|
|
|
with:
|
2022-04-26 22:36:58 -04:00
|
|
|
python-version: '3.7'
|
2022-04-26 14:32:52 -04:00
|
|
|
|
|
|
|
- name: Deploy to surge.sh
|
|
|
|
uses: afc163/surge-preview@v1
|
|
|
|
with:
|
|
|
|
surge_token: ${{ secrets.SURGE_TOKEN }}
|
|
|
|
github_token: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
dist: site
|
2022-04-26 22:36:58 -04:00
|
|
|
failOnError: 'true'
|
2022-04-26 14:32:52 -04:00
|
|
|
build: |
|
2022-04-26 22:36:58 -04:00
|
|
|
pip install pipenv
|
|
|
|
pipenv install
|
|
|
|
pipenv run mkdocs build
|