Skip to content

Commit

Permalink
Replace deprecated command with environment file (#3518)
Browse files Browse the repository at this point in the history
Signed-off-by: jongwooo <jongwooo.han@gmail.com>
  • Loading branch information
jongwooo authored Apr 30, 2023
1 parent 9df4664 commit 6f79346
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/helm_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:

- name: Get current tag trigger
id: trigger-tag
run: echo ::set-output name=tag::$(echo ${GITHUB_REF} | cut -d/ -f 3)
run: echo "tag=$(echo ${GITHUB_REF} | cut -d/ -f 3)" >> $GITHUB_OUTPUT

- name: Removes trigger target
uses: dev-drprasad/delete-tag-and-release@v0.2.0
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/helm_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
run: |
changed=$(ct list-changed)
if [[ -n "$changed" ]]; then
echo "::set-output name=changed::true"
echo "changed=true" >> $GITHUB_OUTPUT
fi
- name: Run chart-testing (lint)
Expand Down

0 comments on commit 6f79346

Please sign in to comment.