Skip to content

Commit

Permalink
Stop using set-output which is deprecated
Browse files Browse the repository at this point in the history
  • Loading branch information
TheSpyder committed Apr 12, 2024
1 parent 5b96dc2 commit 872a640
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,12 +47,12 @@ jobs:
- if: matrix.os != 'windows-latest'
name: (Mac, Linux) Get atdgen path
id: atdgen-path-nix
run: echo "::set-output name=path::$(esy which atdgen)"
run: echo "path=$(esy which atdgen)" >> "$GITHUB_OUTPUT"

- if: matrix.os == 'windows-latest'
name: (Windows) Get atdgen path
id: atdgen-path-win
run: echo "::set-output name=path::$(esy where atdgen)"
run: echo "path=$(esy where atdgen)" >> "$GITHUB_OUTPUT"

- if: matrix.os != 'windows-latest'
name: "(Mac, Linux) [Test] Generate bsconfig.json"
Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@ The installation instructions still point to the old binaries, the project has c

[Atdgen](https://github.com/ahrefs/atd) prebuilt binaries for 3 major OS platforms.

Mainly for BuckleScript users, to avoid the step of installing esy.
This is capped at version 2.15.0, after that
https://github.com/ahrefs/atd/pull/375

## Getting started

Expand Down

0 comments on commit 872a640

Please sign in to comment.