Add clarifying comments: Why .sh 'on' Windows?

part of CURA-9494
This commit is contained in:
Remco Burema 2023-09-07 13:03:56 +02:00
parent 81b2aeaf4e
commit 5765f398a3

View File

@ -256,6 +256,7 @@ jobs:
dist/${{steps.filename.outputs.INSTALLER_FILENAME }}.exe dist/${{steps.filename.outputs.INSTALLER_FILENAME }}.exe
retention-days: 5 retention-days: 5
# NOTE: The extension is .sh, since this isn't going to build-environment, so not on the Win build image.
- name: Write the run info - name: Write the run info
shell: python shell: python
run: | run: |
@ -263,6 +264,7 @@ jobs:
with open("run_info.sh", "w") as f: with open("run_info.sh", "w") as f:
f.writelines(f'echo "CURA_VERSION_FULL={os.environ["CURA_VERSION_FULL"]}" >> $GITHUB_ENV\n') f.writelines(f'echo "CURA_VERSION_FULL={os.environ["CURA_VERSION_FULL"]}" >> $GITHUB_ENV\n')
# NOTE: The extension is .sh, since this isn't going to build-environment, so not on the Win build image.
- name: Upload the run info - name: Upload the run info
uses: actions/upload-artifact@v3 uses: actions/upload-artifact@v3
with: with: