Skip to content

Commit c3b6c39

Browse files
committed
fix: use colon separators
1 parent a4ee242 commit c3b6c39

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.github/actions/extract-fixtures/action.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,4 +25,5 @@ runs:
2525
ref: ${{ steps.github.outputs.action_sha || steps.github.outputs.action_ref }}
2626
dockerfile: Dockerfile
2727
args: extract-fixtures --directory="$OUTPUT" --merged="$MERGED"
28-
build-args: --build-arg VERSION=${{ steps.github.outputs.action_ref }}
28+
build-args: |
29+
VERSION:${{ steps.github.outputs.action_ref }}

.github/actions/test/action.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,8 @@ runs:
4646
dockerfile: Dockerfile
4747
opts: --network=host
4848
args: test --url="$URL" --json="$JSON" --specs="$SPECS" --subdomain-url="$SUBDOMAIN" -- ${{ inputs.args }}
49-
build-args: --build-arg VERSION=${{ steps.github.outputs.action_ref }}
49+
build-args: |
50+
VERSION:${{ steps.github.outputs.action_ref }}
5051
- name: Create the XML
5152
if: (inputs.xml || inputs.html || inputs.markdown) && (failure() || success())
5253
uses: pl-strflt/gotest-json-to-junit-xml@v1

0 commit comments

Comments
 (0)