We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 120c3bb commit 3882dacCopy full SHA for 3882dac
1 file changed
.github/workflows/test.yml
@@ -27,14 +27,14 @@ jobs:
27
id: bundle
28
run: |
29
bundle install
30
- echo "::set-output name=exec::bundle exec"
+ echo "exec=bundle exec" >> $GITHUB_OUTPUT
31
if: "matrix.ruby <= '2.1'"
32
- name: Run test
33
run: ${{steps.bundle.outputs.exec}} rake test
34
- id: build
35
36
rake build
37
- echo "::set-output name=pkg::${GITHUB_REPOSITORY#*/}-${RUNNING_OS%-*}"
+ echo "pkg=${GITHUB_REPOSITORY#*/}-${RUNNING_OS%-*}" >> $GITHUB_OUTPUT
38
env:
39
RUNNING_OS: ${{matrix.os}}
40
if: "matrix.ruby == '3.0'"
0 commit comments