-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
.github/workflows: Add PR deployment pipeline
Add PR deployment pipeline Signed-off-by: Gabriel Mocanu <[email protected]>
- Loading branch information
1 parent
36cd625
commit 9b180ce
Showing
1 changed file
with
67 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
name: OpenEduHub - PR Deployment | ||
|
||
on: | ||
pull_request_target: | ||
types: [labeled] | ||
|
||
jobs: | ||
deploy: | ||
if: ${{ github.event.label.name == 'needs-rendering' }} | ||
name: Deploy to GitHub Pages | ||
runs-on: ubuntu-latest | ||
permissions: | ||
contents: write | ||
pull-requests: write | ||
steps: | ||
- uses: actions/checkout@v3 | ||
with: | ||
path: ./repo | ||
repository: ${{ github.event.pull_request.head.repo.full_name }} | ||
ref: ${{ github.head_ref }} | ||
|
||
- run: | | ||
cd repo | ||
REF=$(echo ${{ github.event.number }} | sed 's/\//\\\//g') | ||
sed -i "s/baseUrl: \/oer-template\//baseUrl: \/oer-template\/$REF\//" config.yaml | ||
- name: Set up Docker Buildx | ||
uses: docker/setup-buildx-action@v1 | ||
|
||
- name: Build and push | ||
uses: docker/build-push-action@v3 | ||
with: | ||
context: ./repo | ||
file: ./repo/Dockerfile | ||
push: false | ||
load: true | ||
tags: oer-template/docusaurus:latest | ||
cache-from: type=gha | ||
cache-to: type=gha | ||
|
||
- name: Load Image | ||
run: | | ||
mkdir -p ${{ github.event.number }} | ||
docker image list | ||
docker run -v $GITHUB_WORKSPACE/repo:/content -v $GITHUB_WORKSPACE/${{ github.event.number }}:/output oer-template/docusaurus:latest | ||
# Popular action to deploy to GitHub Pages: | ||
# Docs: https://github.com/peaceiris/actions-gh-pages#%EF%B8%8F-docusaurus | ||
- name: Deploy to GitHub Pages | ||
uses: peaceiris/actions-gh-pages@v3 | ||
with: | ||
github_token: ${{ secrets.GITHUB_TOKEN }} | ||
# Build output to publish to the `gh-pages-pr` branch: | ||
publish_dir: ./${{ github.event.number }} | ||
destination_dir: ${{ github.event.number }} | ||
# The following lines assign commit authorship to the official | ||
# GH-Actions bot for deploys to `gh-pages` branch: | ||
# https://github.com/actions/checkout/issues/13#issuecomment-724415212 | ||
# The GH actions bot is used by default if you didn't specify the two fields. | ||
# You can swap them out with your own user credentials. | ||
publish_branch: gh-pages | ||
|
||
- name: Add Comment to PR | ||
uses: thollander/actions-comment-pull-request@v2 | ||
with: | ||
message: | | ||
Published at http://open-education-hub.github.io/oer-template/${{ github.event.number }}/ |