We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6633d49 commit f06e9bdCopy full SHA for f06e9bd
.github/workflows/build.yaml
@@ -39,15 +39,15 @@ jobs:
39
enable-plugins: pyside6
40
user-package-configuration-file: ytmusicapi.nuitka-package.config.yaml
41
42
- - name: lowercase the runner OS name
+ - id: runnerOS
43
env:
44
INPUT: ${{ runner.os }}
45
- run: echo ::set-env name=RUNNER_OS::${INPUT,,}
+ run: echo "::set-output name=lower::${INPUT,,}"
46
47
- name: Upload Artifacts
48
uses: actions/upload-artifact@v4
49
with:
50
- name: ytm2spt-${{ env.RUNNER_OS }}-build
+ name: ytm2spt-${{ steps.runnerOS.outputs.lower }}-build
51
path: | # match what's created for the 3 OSes
52
build/*.exe
53
build/*.bin
0 commit comments