Skip to content

Commit

Permalink
ci: adapt to GitHub actions set-output deprecation
Browse files Browse the repository at this point in the history
  • Loading branch information
lread committed Oct 21, 2022
1 parent 00a3fe7 commit 5711f51
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ jobs:
run: bb ci-release commit

- name: Make GitHub Actions aware of target version tag
run: echo "::set-output name=tag::v$(bb clojure -T:build built-version)"
run: echo "tag=v$(bb clojure -T:build built-version)" >> $GITHUB_OUTPUT
id: target-version

- name: Create GitHub release (step 4 of 4)
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
- id: set-tests
name: Set test var for matrix
# run test.clj directly instead of via bb task to avoid generic task output
run: echo "::set-output name=tests::$(bb script/test.clj matrix-for-ci --format=json)"
run: echo "tests=$(bb script/test.clj matrix-for-ci --format=json)" >> $GITHUB_OUTPUT

build:
needs: setup
Expand Down

0 comments on commit 5711f51

Please sign in to comment.