Skip to content

Commit

Permalink
fix(ci): input variables
Browse files Browse the repository at this point in the history
  • Loading branch information
thehappydinoa committed Jun 15, 2023
1 parent 783e466 commit 66376f4
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/reusable-build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -51,11 +51,11 @@ jobs:
credentials: ${{ secrets.DOCKER_AUTH_CONFIG }}
image: gcr.io/censys-io/censys-cloud-connector
target: app
tag: ${{ github.event.inputs.tag }}
tag-pr: "${{ github.event.inputs.tag-pr }}"
version: "${{ github.event.inputs.version }}"
tag: ${{ inputs.tag }}
tag-pr: "${{ inputs.tag-pr }}"
version: "${{ inputs.version }}"

- name: Tag Version
id: tag-version
if: ${{ github.event.inputs.version }}
if: ${{ inputs.version }}
uses: ./.github/actions/create-version-tag

0 comments on commit 66376f4

Please sign in to comment.