mirror of
https://github.com/lucaspalomodevelop/meshlab.git
synced 2026-03-13 00:07:24 +00:00
not passing runner os as input
This commit is contained in:
parent
f56fb04d42
commit
96c778446e
5
.github/actions/0_setup/action.yml
vendored
5
.github/actions/0_setup/action.yml
vendored
@ -2,9 +2,6 @@ name: 'Setup Environment'
|
||||
description: 'Setup Environment'
|
||||
|
||||
inputs:
|
||||
runner-os:
|
||||
description: 'Runner OS'
|
||||
required: true
|
||||
mac-certificate:
|
||||
description: 'MacOS Certificate'
|
||||
required: false
|
||||
@ -18,7 +15,7 @@ runs:
|
||||
- name: Setup MSVC
|
||||
uses: ilammy/msvc-dev-cmd@v1
|
||||
- name: Try
|
||||
if: ${{ inputs.runner-os == 'macOS' }}
|
||||
if: ${{ runner.os == 'macOS' }}
|
||||
shell: bash
|
||||
run: |
|
||||
echo "Hello World ${{ inputs.runner-os }}"
|
||||
|
||||
1
.github/workflows/BuildMeshLab.yml
vendored
1
.github/workflows/BuildMeshLab.yml
vendored
@ -25,7 +25,6 @@ jobs:
|
||||
- name: Setup Environment
|
||||
uses: ./.github/actions/0_setup
|
||||
with:
|
||||
runner-os: ${{ runner.os }}
|
||||
mac-certificate: $MAC_CERT
|
||||
mac-certificate-pssw: $MAC_CERT_PSSW
|
||||
- name: Set CodeSign Certificate macOS
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user