Skip to content

Commit

Permalink
restore set-output
Browse files Browse the repository at this point in the history
  • Loading branch information
Pedro Terzero committed Jan 23, 2023
1 parent 271b205 commit 6bd1f6f
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions .github/workflows/aseprite_build_deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,9 @@ jobs:
VERSION_INFO=$(echo "${data}" | jq -r '.body')
echo "${LATEST_TAG}" > ${LATEST_TAG}.txt
echo "latest_tag=${LATEST_TAG}" >> $GITHUB_OUTPUT
echo "download_url=${DOWNLOAD_URL}"
echo "version_info<<EOF" >> $GITHUB_OUTPUT
echo "$VERSION_INFO" >> $GITHUB_OUTPUT
echo "EOF" >> $GITHUB_OUTPUT
echo "::set-output name=latest_tag::${LATEST_TAG}"
echo "::set-output name=download_url::${DOWNLOAD_URL}"
echo "::set-output name=version_info::${VERSION_INFO}"
- name: Load version from cache
id: version_check
uses: actions/cache@v3
Expand All @@ -43,7 +41,7 @@ jobs:
- name: Should we start new build?
id: should_build
if: steps.version_check.outputs.cache-hit != 'true'
run: echo "should_build=true" >> $GITHUB_OUTPUT
run: echo "::set-output name=should_build::true"
- name: Create Release
id: create_release
if: steps.should_build.outputs.should_build
Expand Down

0 comments on commit 6bd1f6f

Please sign in to comment.