mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-16 03:07:53 -06:00
use env instead of output
Contributes to CURA-8415
This commit is contained in:
parent
e6e867eb5f
commit
07f784a5d6
1 changed files with 1 additions and 1 deletions
2
.github/workflows/macos.yml
vendored
2
.github/workflows/macos.yml
vendored
|
@ -81,7 +81,7 @@ jobs:
|
|||
label: ${{ steps.determine-label.outputs.label }} # You must define the specific step inside the job
|
||||
steps:
|
||||
- id: determine-label
|
||||
run: echo "::set-output name=label::$(if [ "${{ inputs.architecture }}" = "ARM64" ]; then echo 'self-hosted'; else echo 'macos-11'; fi)"
|
||||
run: echo "label=$(if [ "${{ inputs.architecture }}" = "ARM64" ]; then echo 'self-hosted'; else echo 'macos-11'; fi)" >> $GITHUB_OUTPUT
|
||||
|
||||
cura-installer-create:
|
||||
needs: [ get-runner-label ]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue