Skip to content

Commit

Permalink
asdf
Browse files Browse the repository at this point in the history
  • Loading branch information
paulbkoch committed Jul 25, 2024
1 parent 2033d36 commit df9fed1
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -89,14 +89,14 @@ jobs:
runs-on: ubuntu-20.04
steps:
- name: Check out repository
uses: actions/checkout@v2
uses: actions/checkout@v4
- name: Build vis
run: |
cd shared/vis
npm install
npm run build-prod
- name: Publish interpret-inline.js library
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: vis
path: shared/vis/dist
Expand All @@ -105,7 +105,7 @@ jobs:
runs-on: ubuntu-20.04
steps:
- name: Check out repository
uses: actions/checkout@v2
uses: actions/checkout@v4
- name: Build npm package
run: |
cd shared/vis
Expand All @@ -115,7 +115,7 @@ jobs:
mkdir pkg
cp *.tgz pkg/
- name: Publish npm package
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: npm
path: shared/vis/pkg
Expand All @@ -124,7 +124,7 @@ jobs:
runs-on: ubuntu-20.04
steps:
- name: Check out repository
uses: actions/checkout@v2
uses: actions/checkout@v4
- name: Build R package
run: |
cd R
Expand All @@ -135,7 +135,7 @@ jobs:
if: failure()
run: cat bld/tmp/R/interpret.Rcheck/00install.out
- name: Publish R package
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: R
path: bld/R

0 comments on commit df9fed1

Please sign in to comment.