-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adds manual run on runner.yml, adds ssh key step to build.yml
- Loading branch information
1 parent
5bb0c12
commit b6aae70
Showing
2 changed files
with
245 additions
and
239 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 |
---|---|---|
|
@@ -3,7 +3,7 @@ name: Build | |
on: push | ||
|
||
env: | ||
NODE_VERSION: 18.x | ||
NODE_VERSION: 20.x | ||
|
||
jobs: | ||
setup: | ||
|
@@ -14,6 +14,11 @@ jobs: | |
- name: Check out repository code ${{ github.repository }} on ${{ github.ref }} | ||
uses: actions/checkout@v3 | ||
|
||
- name: Set up SSH key | ||
uses: webfactory/[email protected] | ||
with: | ||
ssh-private-key: ${{ secrets.SSH_KEY }} | ||
|
||
- name: Set up Node.js ${{ env.NODE_VERSION }} | ||
uses: actions/setup-node@v3 | ||
with: | ||
|
@@ -48,7 +53,7 @@ jobs: | |
key: ${{ runner.os }}-node-${{ hashFiles('**/yarn.lock') }} | ||
restore-keys: | | ||
${{ runner.os }}-node- | ||
- name: Build | ||
uses: borales/actions-yarn@v4 | ||
with: | ||
|
Oops, something went wrong.