Skip to content

Commit

Permalink
runner
Browse files Browse the repository at this point in the history
  • Loading branch information
steam0r committed Mar 6, 2024
1 parent 17970a9 commit a795283
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:
description: "image to run the build on"
required: true
type: string
os:
target:
description: "mac/win/linux"
required: true
type: string
Expand All @@ -29,7 +29,7 @@ on:
type: string
jobs:
build:
runs-on: ${{ inputs.os }}
runs-on: ${{ inputs.runner }}
steps:
- name: checkout cables_dev
uses: actions/checkout@v4
Expand Down Expand Up @@ -76,7 +76,7 @@ jobs:
echo "NPM_EXE=$(which npm)" >> $GITHUB_OUTPUT
- name: build standalone
shell: bash
run: ./hook_standalone.sh ${{ inputs.os }}
run: ./hook_standalone.sh ${{ inputs.target }}
env:
BUILD_VERSION: ${{ inputs.build_version }}
GH_TOKEN: ${{ secrets.github_token }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
uses: ./.github/workflows/build.yml
with:
runner: ubuntu-latest
os: linux
target: linux
branch: develop
build_version: ${{ github.run_number }}-dev
secrets: inherit

0 comments on commit a795283

Please sign in to comment.