Skip to content

Commit

Permalink
Fix ci (#14)
Browse files Browse the repository at this point in the history
* fix ci

* fix ci
  • Loading branch information
mununki authored Dec 5, 2022
1 parent 81a3675 commit f849ce2
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 16 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build_linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
- 4.12.1

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- name: Use OCaml ${{ matrix.ocaml-compiler}}
uses: ocaml/setup-ocaml@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build_macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
- 4.12.1

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- name: Use OCaml ${{ matrix.ocaml-version}}
uses: ocaml/setup-ocaml@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build_windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
- 4.12.1

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- name: Use OCaml ${{ matrix.ocaml-compiler}}
uses: ocaml/setup-ocaml@v2
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
- 4.12.1

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- name: Use OCaml ${{ matrix.ocaml-compiler}}
uses: ocaml/setup-ocaml@v2
Expand Down Expand Up @@ -47,7 +47,7 @@ jobs:
- 4.12.1

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- name: Use OCaml ${{ matrix.ocaml-compiler}}
uses: ocaml/setup-ocaml@v2
Expand Down Expand Up @@ -76,10 +76,10 @@ jobs:
name: (only on release) Publish
runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@v1
- uses: actions/setup-node@v1
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: "12.x"
node-version: 16
registry-url: "https://registry.npmjs.org"

- name: Download linux artifacts
Expand Down
16 changes: 8 additions & 8 deletions .github/workflows/publish_prerelease.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ on:
workflow_dispatch:
inputs:
release_version:
description: 'change npm release version'
required: true
default: ''
description: "change npm release version"
required: true
default: ""

jobs:
build_linux:
Expand All @@ -19,7 +19,7 @@ jobs:
- 4.12.1

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- name: Use OCaml ${{ matrix.ocaml-compiler}}
uses: ocaml/setup-ocaml@v2
Expand Down Expand Up @@ -53,7 +53,7 @@ jobs:
- 4.12.1

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- name: Use OCaml ${{ matrix.ocaml-compiler}}
uses: ocaml/setup-ocaml@v2
Expand Down Expand Up @@ -82,10 +82,10 @@ jobs:
name: (only on release) Publish
runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@v1
- uses: actions/setup-node@v1
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: "12.x"
node-version: 16
registry-url: "https://registry.npmjs.org"

- name: Download linux artifacts
Expand Down

0 comments on commit f849ce2

Please sign in to comment.