Skip to content

Commit

Permalink
github action linux: Fix an error with set-output
Browse files Browse the repository at this point in the history
  • Loading branch information
Obijuan committed Feb 17, 2023
1 parent b296c62 commit 2a75e79
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ jobs:
- name: 'Upload AppImage/linux64'
env:
ICESTUDIO_VERSION: "${{steps.icestudio_json.outputs.icestudio_version}}"
TIMESTAMP: "${{steps.build_date.icestudio_timestamp}}"
TIMESTAMP: "${{steps.build_date.outputs.icestudio_timestamp}}"
uses: 'actions/upload-artifact@v3'
with:
name: "linux64_AppImage_${{env.ICESTUDIO_VERSION}}${{env.TIMESTAMP}}"
Expand All @@ -71,7 +71,7 @@ jobs:
- name: 'Upload ZIP/linux64'
env:
ICESTUDIO_VERSION: "${{steps.icestudio_json.outputs.icestudio_version}}"
TIMESTAMP: "${{steps.build_date.icestudio_timestamp}}"
TIMESTAMP: "${{steps.build_date.outputs.icestudio_timestamp}}"
uses: 'actions/upload-artifact@v3'
with:
name: "linux64_ZIP_${{env.ICESTUDIO_VERSION}}${{env.TIMESTAMP}}"
Expand Down

0 comments on commit 2a75e79

Please sign in to comment.