Skip to content

Conversation

@jongwooo
Copy link

Description

Closes #384

Update .github/workflows/release.yml to use environment file instead of deprecated set-output command.
For more information, see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/

I found the workflow file that use set-output command through the following command:

$ find . -name '*.yml' -o -name '*.yaml' | xargs egrep '\bset-output\b'

AS-IS

- name: Get matrix id: get_matrix run: |  TARGETS=${{matrix.TARGETS}}  echo ::set-output name=OS::${TARGETS%/*}  echo ::set-output name=ARCH::${TARGETS#*/}

TO-BE

- name: Get matrix id: get_matri shell: bash run: |  TARGETS=${{matrix.TARGETS}}  echo "OS=${TARGETS%/*}" >> $GITHUB_OUTPUT  echo "ARCH=${TARGETS#*/}" >> $GITHUB_OUTPUT
Signed-off-by: Jongwoo Han <jongwooo.han@gmail.com>
@codecov
Copy link

codecov bot commented Dec 16, 2023

Codecov Report

All modified and coverable lines are covered by tests ✅

Project coverage is 0.00%. Comparing base (3a96f68) to head (324f3e3).
Report is 22 commits behind head on master.

❗ There is a different number of reports uploaded between BASE (3a96f68) and HEAD (324f3e3). Click for more details.

HEAD has 1 upload less than BASE
Flag BASE (3a96f68) HEAD (324f3e3)
unit 1 0
Additional details and impacted files
@@ Coverage Diff @@ ## master #385 +/- ## ========================================== - Coverage 79.31% 0.00% -79.32%  ========================================== Files 23 1 -22 Lines 1750 71 -1679 ========================================== - Hits 1388 0 -1388  + Misses 278 71 -207  + Partials 84 0 -84 
Flag Coverage Δ
e2e 0.00% <ø> (∅)
unit ?

Flags with carried forward coverage won't be shown. Click here to find out more.

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

1 participant