-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
cabb186
commit 6aea50d
Showing
2 changed files
with
18 additions
and
18 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
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 |
---|---|---|
|
@@ -15,15 +15,15 @@ jobs: | |
known_hosts: ${{ secrets.KNOWN_HOSTS }} | ||
if_key_exists: replace | ||
|
||
- uses: actions/checkout@v3 | ||
- uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3 | ||
- name: Setup Node | ||
uses: actions/setup-node@v3 | ||
uses: actions/setup-node@1a4442cacd436585916779262731d5b162bc6ec7 # v3 | ||
with: | ||
node-version: 20.8.1 | ||
cache: "yarn" | ||
|
||
- name: Setup Hugo | ||
uses: peaceiris/actions-hugo@v2 | ||
uses: peaceiris/actions-hugo@16361eb4acea8698b220b76c0d4e84e1fd22c61d # v2 | ||
with: | ||
hugo-version: "latest" | ||
extended: true | ||
|
@@ -38,7 +38,7 @@ jobs: | |
run: (cd ..; git clone [email protected]:ocw-content-rc/15.s21-january-iap-2014.git ocw-course) | ||
|
||
- name: Clone ocw-hugo-projects for config | ||
uses: actions/checkout@v3 | ||
uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3 | ||
with: | ||
repository: "mitodl/ocw-hugo-projects" | ||
ref: "main" | ||
|
@@ -69,7 +69,7 @@ jobs: | |
RESOURCE_BASE_URL: ${{ secrets.RESOURCE_BASE_URL }} | ||
|
||
- name: Deploy www Preview to Netlify | ||
uses: nwtgck/[email protected] | ||
uses: nwtgck/actions-netlify@7a92f00dde8c92a5a9e8385ec2919775f7647352 # v2.1 | ||
if: ${{ github.event_name == 'pull_request' }} | ||
with: | ||
publish-dir: "../ocw-www/public" | ||
|
@@ -84,7 +84,7 @@ jobs: | |
NETLIFY_SITE_ID: ${{ secrets.NETLIFY_SITE_ID }} | ||
|
||
- name: Deploy v2 Course Preview to Netlify | ||
uses: nwtgck/[email protected] | ||
uses: nwtgck/actions-netlify@7a92f00dde8c92a5a9e8385ec2919775f7647352 # v2.1 | ||
if: ${{ github.event_name == 'pull_request' }} | ||
with: | ||
publish-dir: "../ocw-course/public-v2" | ||
|
@@ -104,7 +104,7 @@ jobs: | |
body=$(echo 'Netlify Deployments:<br>www: https://ocw-hugo-themes-www-pr-${{ github.event.number }}--ocw-next.netlify.app/ <br> Course v2: https://ocw-hugo-themes-course-v2-pr-${{ github.event.number }}--ocw-next.netlify.app/') | ||
echo "body=$body" >> $GITHUB_OUTPUT | ||
- name: Find Comment | ||
uses: peter-evans/find-comment@v2 | ||
uses: peter-evans/find-comment@a54c31d7fa095754bfef525c0c8e5e5674c4b4b1 # v2 | ||
id: fc | ||
continue-on-error: true | ||
with: | ||
|
@@ -114,23 +114,23 @@ jobs: | |
|
||
- name: Create comment | ||
if: ${{ steps.fc.outputs.comment-id == 0 }} | ||
uses: peter-evans/create-or-update-comment@v3 | ||
uses: peter-evans/create-or-update-comment@23ff15729ef2fc348714a3bb66d2f655ca9066f2 # v3 | ||
continue-on-error: true | ||
with: | ||
issue-number: ${{ github.event.pull_request.number }} | ||
body: ${{ steps.set-comment-body.outputs.body }} | ||
|
||
- name: Update comment | ||
if: ${{ steps.fc.outputs.comment-id != 0 }} | ||
uses: peter-evans/create-or-update-comment@v3 | ||
uses: peter-evans/create-or-update-comment@23ff15729ef2fc348714a3bb66d2f655ca9066f2 # v3 | ||
continue-on-error: true | ||
with: | ||
comment-id: ${{ steps.fc.outputs.comment-id }} | ||
edit-mode: replace | ||
body: ${{ steps.set-comment-body.outputs.body }} | ||
|
||
- name: Deploy CI build to Netlify | ||
uses: nwtgck/[email protected] | ||
uses: nwtgck/actions-netlify@7a92f00dde8c92a5a9e8385ec2919775f7647352 # v2.1 | ||
if: ${{ github.event_name == 'push' }} | ||
with: | ||
publish-dir: "../ocw-www/public" | ||
|
@@ -148,9 +148,9 @@ jobs: | |
runs-on: ubuntu-latest | ||
if: ${{ github.event_name == 'pull_request' }} | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3 | ||
- name: Setup Node | ||
uses: actions/setup-node@v3 | ||
uses: actions/setup-node@1a4442cacd436585916779262731d5b162bc6ec7 # v3 | ||
with: | ||
node-version: 20.8.1 | ||
cache: "yarn" | ||
|