Skip to content

Commit

Permalink
refactor: replace set-output with (#57)
Browse files Browse the repository at this point in the history
  • Loading branch information
toomuchdesign committed Apr 28, 2023
1 parent 065c6b2 commit 9e0b1df
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/node-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -164,9 +164,9 @@ jobs:
run: |
if [ -f package-lock.json ] || [ -f npm-shrinkwrap.json ] || [ -f yarn.lock ]
then
echo "::set-output name=install-command::npm ci"
echo "install-command=npm ci" >> $GITHUB_OUTPUT
else
echo "::set-output name=install-command::npm install"
echo "install-command=npm install" >> $GITHUB_OUTPUT
fi
- name: Install dependencies
Expand Down Expand Up @@ -201,7 +201,7 @@ jobs:
)
# output the merged variables
echo "::set-output name=env-vars::${MERGED_VARS}"
echo "env-vars=${MERGED_VARS}" >> $GITHUB_OUTPUT
env:
INPUT_VARS: ${{ secrets.test-secrets || '{}' }}

Expand Down

0 comments on commit 9e0b1df

Please sign in to comment.