Skip to content

Commit

Permalink
Add preview (#376)
Browse files Browse the repository at this point in the history
* updated organizations

* preview

* preview
  • Loading branch information
yufengliu15 authored Oct 21, 2023
1 parent ffeef84 commit f878565
Showing 1 changed file with 38 additions and 0 deletions.
38 changes: 38 additions & 0 deletions .github/workflows/hugo-preview.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
name: Build and Deploy PR Preview to surge
# testing
on:
pull_request:

jobs:
build_preview:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3

- name: Setup Hugo
uses: peaceiris/actions-hugo@v2
with:
hugo-version: '0.105.0'

- name: Setup base URL env var
run: |
export PRNUMBER=$(jq --raw-output .pull_request.number "$GITHUB_EVENT_PATH")
echo BASEURL="https://rmoff-rmoff-blog-build_preview-pr-"$PRNUMBER".surge.sh/" >> $GITHUB_ENV
- name: Report base URL env var
run: echo "${{ env.BASEURL }}"

- name: Build
run: hugo --baseURL "${{ env.BASEURL }}"

- name: Deploy to surge
uses: afc163/surge-preview@v1
id: preview_step
with:
surge_token: ${{ 1f147e7d61488c3db6957c80ab45939f }}
github_token: ${{ secrets.GITHUB_TOKEN }}
dist: public
failOnError: false
teardown: true
build: |
echo Deploying to surge.sh

0 comments on commit f878565

Please sign in to comment.