Rename CI workflow 'ref' inputs to 'target'

This commit is contained in:
peelz
2023-05-27 21:48:46 -04:00
parent c6b9c753fe
commit 5e84d65cdc
9 changed files with 17 additions and 15 deletions
+3 -3
View File
@@ -5,7 +5,7 @@ name: Publish release
on:
workflow_call:
inputs:
ref:
target:
description: "The git ref to checkout, build from and release"
required: true
type: string
@@ -69,7 +69,7 @@ jobs:
build:
uses: ./.github/workflows/build.yml
with:
ref: ${{ inputs.ref }}
target: ${{ inputs.target }}
publish-release:
runs-on: ubuntu-latest
@@ -159,7 +159,7 @@ jobs:
- name: Publish release
uses: notpeelz/action-gh-create-release@a12edfc71daf5daa7922b931c28e2bf88d3b2ced # v5.0.0
with:
target: ${{ inputs.ref }}
target: ${{ inputs.target }}
tag: ${{ inputs.tag }}
prerelease: ${{ inputs.prerelease }}
strategy: replace