diff options
Diffstat (limited to '.github/workflows/release_dep.yml')
-rw-r--r-- | .github/workflows/release_dep.yml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/.github/workflows/release_dep.yml b/.github/workflows/release_dep.yml index bda07b97..24f550be 100644 --- a/.github/workflows/release_dep.yml +++ b/.github/workflows/release_dep.yml @@ -33,10 +33,10 @@ jobs: - name: Generate builder values id: values run: | - echo "::set-output name=version::`echo ${GITHUB_REF##*/} | sed -e 's/^[vV ]*//'`" - echo "::set-output name=timestamp::`date +%FT%T%z`" - echo "::set-output name=binary-name::rr" - echo "::set-output name=sign-cert-name::rr.asc" + echo "version=$(echo ${GITHUB_REF##*/} | sed -e 's/^[vV ]*//')" >> $GITHUB_OUTPUT + echo "timestamp=$(echo $(date +%FT%T%z))" >> $GITHUB_OUTPUT + echo "binary-name=rr" >> $GITHUB_OUTPUT + echo "sign-cert-name=rr.asc" >> $GITHUB_OUTPUT - name: Import GPG key uses: crazy-max/ghaction-import-gpg@v5 |