Skip to content

Add join page

Add join page #20

Workflow file for this run

name: Build and Deploy
on:
push:
branches:
- master
pull_request_target:
types: [opened, synchronize]
branches:
- master
env:
GH_USERNAME: "BioJulia"
PREVIEWS_PREFIX: "previews/PR" # will be followed by PR number
jobs:
build-and-deploy:
runs-on: ubuntu-latest
permissions: write-all
steps:
- uses: actions/checkout@v3
- name: 👀 Set preview path for PRs
run: |
echo 'PRID=${{ env.PREVIEWS_PREFIX}}${{ github.event.number}}' >> $GITHUB_ENV
if: github.event_name == 'pull_request_target'
shell: bash
- name: 🚀 Build and Deploy
uses: tlienart/xranklin-build-action@main
with:
SITE_FOLDER: "./"
BASE_URL_PREFIX: ${{ env.REPO_PREFIX }}
PREVIEW: ${{ env.PRID }}
# PYTHON_LIBS: "pandas ansi2html"
# GNUPLOT: false
# LUNR: true
- name: 🗒️ Preview URL indication for PRs
uses: thollander/actions-comment-pull-request@v2
with:
message: |
Preview should be up in a couple of mins at
https://${{ env.GH_USERNAME }}.github.io/${{ env.REPO_PREFIX }}/${{ env.PRID }}
(if you get a 404, wait 30s then refresh).
if: github.event_name == 'pull_request_target'