Skip to content

Commit

Permalink
Adds manual run on runner.yml, adds ssh key step to build.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanformio committed Mar 4, 2024
1 parent 5bb0c12 commit b6aae70
Show file tree
Hide file tree
Showing 2 changed files with 245 additions and 239 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Build
on: push

env:
NODE_VERSION: 18.x
NODE_VERSION: 20.x

jobs:
setup:
Expand All @@ -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:
Expand Down Expand Up @@ -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:
Expand Down
Loading

0 comments on commit b6aae70

Please sign in to comment.