Skip to content

Commit

Permalink
CI: dont quote KOSLI_HOST env var
Browse files Browse the repository at this point in the history
  • Loading branch information
JonJagger committed Nov 8, 2023
1 parent 14b1b72 commit c1b8883
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/sub_build_image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,11 @@ on:

env:
KOSLI_DRY_RUN: ${{ vars.KOSLI_DRY_RUN }}
KOSLI_HOST: "https://app.kosli.com"
KOSLI_HOST: https://app.kosli.com
KOSLI_ORG: ${{ vars.KOSLI_ORG }}
KOSLI_FLOW: ${{ vars.KOSLI_FLOW }}
KOSLI_API_TOKEN: ${{ secrets.KOSLI_API_TOKEN }}
IMAGE_TAG: ${{ inputs.IMAGE_TAG }}
#IMAGE_TAG: ${{ inputs.IMAGE_TAG }}

jobs:
build-image:
Expand All @@ -39,7 +39,7 @@ jobs:
with:
context: .
push: true
tags: "cyberdojo/differ:${{ env.IMAGE_TAG }}"
tags: cyberdojo/differ:${{ inputs.IMAGE_TAG }}
build-args:
COMMIT_SHA=${{ github.sha }}

Expand All @@ -50,5 +50,5 @@ jobs:

- name: Report image to Kosli flow
run:
kosli report artifact cyberdojo/differ:${{ env.IMAGE_TAG }}
kosli report artifact cyberdojo/differ:${{ inputs.IMAGE_TAG }}
--artifact-type=docker

0 comments on commit c1b8883

Please sign in to comment.