Skip to content

Commit da5fe7b

Browse files
committed
qa: prefix generic tags with "v"
Particularly with major tags, we need a prefix. Minor tags work without it, but having the prefix on the generic tags makes it simpler to understand which tags are auto-generated. Signed-off-by: Matthew Weier O'Phinney <[email protected]>
1 parent 2c428f8 commit da5fe7b

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/actions/generate-tags/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ let major = semver.major(tag);
88
let minor = major + '.' + semver.minor(tag);
99

1010
let tags = [
11-
major,
12-
minor,
11+
'v' + major,
12+
'v' + minor,
1313
];
1414

1515
core.info(`Original tag: ${tag}`);

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
- uses: actions/checkout@v2
4242
name: Gather CI configuration
4343
id: matrix
44-
uses: laminas/laminas-ci-matrix-action@0
44+
uses: laminas/laminas-ci-matrix-action@v0
4545

4646
qa:
4747
name: QA Checks
@@ -52,7 +52,7 @@ jobs:
5252
matrix: ${{ fromJSON(needs.matrix.outputs.matrix) }}
5353
steps:
5454
- name: ${{ matrix.name }}
55-
uses: laminas/laminas-continuous-integration-action@0
55+
uses: laminas/laminas-continuous-integration-action@v0
5656
with:
5757
job: ${{ matrix.job }}
5858
```

0 commit comments

Comments
 (0)