Skip to content

Commit

Permalink
update github deploy action to latest versions
Browse files Browse the repository at this point in the history
  • Loading branch information
owenpshaw committed Oct 8, 2024
1 parent 83ef2b4 commit 4e20079
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions .github/workflows/deploy-prod.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,27 +13,31 @@ env:

jobs:
deploy:
runs-on: ubuntu-20.04
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
path: DocViewer

- name: Checkout JSKit
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
repository: breakside/JSKit
ref: prod
path: JSKit

- name: Setup Node
uses: actions/setup-node@v1
uses: actions/setup-node@v4

- name: Bootstrap Install JSKit
run: npm install
working-directory: JSKit

- name: Bootstrap Install JSKit (again)
run: npm install
working-directory: JSKit

- name: Generate Docs
run: npx jskit doc Documentation/Code/JSKit.doc.yaml ../DocViewer/DocViewerWeb
working-directory: JSKit
Expand Down

0 comments on commit 4e20079

Please sign in to comment.