privacyguides.org/.github/workflows/preview.yml

45 lines
1.1 KiB
YAML
Raw Normal View History

2022-04-26 18:32:52 +00:00
name: 🔂 Surge PR Preview
on:
pull_request_target:
2022-04-27 04:13:24 +00:00
types: [opened, synchronize, reopened]
2022-05-02 15:42:09 +00:00
# Ensures that only one mirror task will run at a time.
concurrency:
group: surge-sh
2022-04-26 18:32:52 +00: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-27 02:36:58 +00:00
ssh-key: ${{ secrets.ACTIONS_SSH_KEY }}
submodules: 'true'
2022-04-26 18:32:52 +00:00
- name: Set up Python runtime
uses: actions/setup-python@v3
with:
2022-04-27 02:36:58 +00:00
python-version: '3.7'
2022-04-26 18:32:52 +00: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-27 02:36:58 +00:00
failOnError: 'true'
2022-04-26 18:32:52 +00:00
build: |
2022-04-27 02:36:58 +00:00
pip install pipenv
pipenv install
pipenv run mkdocs build