Skip to content

Commit e029391

Browse files
authored
Merge pull request #121 from per1234/package-name-prefix
Fix invalid tester build version prefix
2 parents 406a6fa + 63d2ca3 commit e029391

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

workflow-templates/dependabot/workflow-template-copies/.github/workflows/publish-go-tester-task.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545

4646
- name: Build
4747
run: |
48-
PACKAGE_NAME_PREFIX="${{ github.workflow }}"
48+
PACKAGE_NAME_PREFIX="test"
4949
if [ "${{ github.event_name }}" = "pull_request" ]; then
5050
PACKAGE_NAME_PREFIX="$PACKAGE_NAME_PREFIX-${{ github.event.number }}"
5151
fi

workflow-templates/publish-go-tester-task.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545

4646
- name: Build
4747
run: |
48-
PACKAGE_NAME_PREFIX="${{ github.workflow }}"
48+
PACKAGE_NAME_PREFIX="test"
4949
if [ "${{ github.event_name }}" = "pull_request" ]; then
5050
PACKAGE_NAME_PREFIX="$PACKAGE_NAME_PREFIX-${{ github.event.number }}"
5151
fi

0 commit comments

Comments
 (0)