Skip to content

Commit

Permalink
Fix f6530f3: [Actions] set-output was not correctly converted
Browse files Browse the repository at this point in the history
  • Loading branch information
glx22 committed Oct 19, 2022
1 parent a54a904 commit aa271f4
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ jobs:
- name: Prepare cache key
id: key
run: |
echo "name=image::$ImageOS-$ImageVersion" >> $GITHUB_OUTPUT
echo "image=$ImageOS-$ImageVersion" >> $GITHUB_OUTPUT
- name: Enable vcpkg cache
uses: actions/cache@v3
Expand Down Expand Up @@ -253,7 +253,7 @@ jobs:
# Work around caching failure with GNU tar
New-Item -Type Junction -Path vcpkg -Target c:\vcpkg
Write-Output "name=image::$env:ImageOS-$env:ImageVersion" >> $GITHUB_OUTPUT
Write-Output "image=$env:ImageOS-$env:ImageVersion" >> $GITHUB_OUTPUT
- name: Enable vcpkg cache
uses: actions/cache@v3
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -138,10 +138,10 @@ jobs:
echo "Folder on CDN: ${FOLDER}"
echo "Workflow trigger: ${TRIGGER_TYPE}"
echo "name=version::$(cat .version)" >> $GITHUB_OUTPUT
echo "name=is_tag::${IS_TAG}" >> $GITHUB_OUTPUT
echo "name=folder::${FOLDER}" >> $GITHUB_OUTPUT
echo "name=trigger_type::${TRIGGER_TYPE}" >> $GITHUB_OUTPUT
echo "version=$(cat .version)" >> $GITHUB_OUTPUT
echo "is_tag=${IS_TAG}" >> $GITHUB_OUTPUT
echo "folder=${FOLDER}" >> $GITHUB_OUTPUT
echo "trigger_type=${TRIGGER_TYPE}" >> $GITHUB_OUTPUT
env:
NIGHTLIES_BRANCH: master
FOLDER_RELEASES: openttd-releases
Expand Down Expand Up @@ -497,7 +497,7 @@ jobs:
- name: Prepare cache key
id: key
run: |
echo "name=image::$ImageOS-$ImageVersion" >> $GITHUB_OUTPUT
echo "image=$ImageOS-$ImageVersion" >> $GITHUB_OUTPUT
- name: Enable vcpkg cache
uses: actions/cache@v3
Expand Down Expand Up @@ -700,7 +700,7 @@ jobs:
# Work around caching failure with GNU tar
New-Item -Type Junction -Path vcpkg -Target c:\vcpkg
Write-Output "name=image::$env:ImageOS-$env:ImageVersion" >> $GITHUB_OUTPUT
Write-Output "image=$env:ImageOS-$env:ImageVersion" >> $GITHUB_OUTPUT
- name: Enable vcpkg cache
uses: actions/cache@v3
Expand Down

0 comments on commit aa271f4

Please sign in to comment.