Skip to content

Commit

Permalink
Replaced usage of the depricated set-output function.
Browse files Browse the repository at this point in the history
  • Loading branch information
jlesage committed Oct 13, 2022
1 parent b8ca3bf commit 0d0edac
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/build-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -88,12 +88,12 @@ jobs:
echo "Docker container tag(s): $TAGS"
echo "::endgroup::"
# Export outputs.
echo ::set-output name=is_release::${IS_RELEASE}
echo ::set-output name=release_type::${RELEASE_TYPE}
echo ::set-output name=version::${VERSION}
echo ::set-output name=label_version::${LABEL_VERSION}
echo ::set-output name=tags::${TAGS}
#echo ::set-output name=build_date::$(date -u +'%Y-%m-%dT%H:%M:%SZ')
echo "is_release=${IS_RELEASE}" >> $GITHUB_OUTPUT
echo "release_type=${RELEASE_TYPE}" >> $GITHUB_OUTPUT
echo "version=${VERSION}" >> $GITHUB_OUTPUT
echo "label_version=${LABEL_VERSION}" >> $GITHUB_OUTPUT
echo "tags=${TAGS}" >> $GITHUB_OUTPUT
#echo "build_date=$(date -u +'%Y-%m-%dT%H:%M:%SZ')" >> $GITHUB_OUTPUT
- name: Checkout
uses: actions/checkout@v3
Expand Down

0 comments on commit 0d0edac

Please sign in to comment.