Skip to content

Commit

Permalink
Rename main.yml workflow input parameters so they are compatible with…
Browse files Browse the repository at this point in the history
… JSON
  • Loading branch information
Blackhex committed Jun 29, 2023
1 parent 34015d4 commit a373813
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,22 +6,22 @@ on:
- main
workflow_dispatch:
inputs:
binutils-branch:
binutils_branch:
description: 'Binutils branch to build'
required: false
default: 'woarm64'
gcc-branch:
gcc_branch:
description: 'GCC branch to build'
required: false
default: 'woarm64'
mingw-branch:
mingw_branch:
description: 'Mingw branch to build'
required: false
default: 'woarm64'
env:
BINUTILS_BRANCH: ${{ github.event.inputs.binutils-branch }}
GCC_BRANCH: ${{ github.event.inputs.gcc-branch }}
MINGW_BRANCH: ${{ github.event.inputs.mingw-branch }}
BINUTILS_BRANCH: ${{ github.event.inputs.binutils_branch }}
GCC_BRANCH: ${{ github.event.inputs.gcc_branch }}
MINGW_BRANCH: ${{ github.event.inputs.mingw_branch }}

jobs:
run-script:
Expand Down

0 comments on commit a373813

Please sign in to comment.