Remove deprecated Github Action set-output option (#3119)
parent
897f08b7e8
commit
059ae819ce
|
@ -49,11 +49,11 @@ jobs:
|
|||
id: notes
|
||||
run: |
|
||||
set -- release-assets/Betaflight-Configurator-Debug-*
|
||||
echo "::set-output name=notes::$(test -e "$1" && echo '${{ env.debug_release_notes }}' || echo '${{ env.release_notes }}')"
|
||||
echo "notes=$(test -e "$1" && echo '${{ env.debug_release_notes }}' || echo '${{ env.release_notes }}')" >> $GITHUB_OUTPUT
|
||||
|
||||
- name: Get current date
|
||||
id: date
|
||||
run: echo "::set-output name=today::$(date '+%Y%m%d')"
|
||||
run: echo "today=$(date '+%Y%m%d')" >> $GITHUB_OUTPUT
|
||||
|
||||
- name: Release
|
||||
uses: softprops/action-gh-release@de2c0eb89ae2a093876385947365aca7b0e5f844 # v0.1.15
|
||||
|
|
Loading…
Reference in New Issue