Skip to content

Commit 476a1e1

Browse files
author
gozik
committed
Fix build tag naming
1 parent c8cba15 commit 476a1e1

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: Build and Release
33
on:
44
push:
55
tags:
6-
- 'plugin-v*'
6+
- 'v*'
77
workflow_dispatch:
88

99
jobs:
@@ -306,7 +306,7 @@ jobs:
306306
- build-macos-arm64
307307
- build-windows-amd64
308308
runs-on: ubuntu-latest
309-
if: startsWith(github.ref, 'refs/tags/plugin-v')
309+
if: startsWith(github.ref, 'refs/tags/v')
310310
permissions:
311311
contents: write
312312
steps:

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -448,7 +448,7 @@ The script reads protos from `../gozik/api/music/v1/`, writes stubs to `generate
448448

449449
## CI / Packaging workflow
450450

451-
The GitHub Actions workflow at `.github/workflows/build.yml` builds release artefacts for all platforms on every `plugin-v*` tag push.
451+
The GitHub Actions workflow at `.github/workflows/build.yml` builds release artefacts for all platforms on every `v*` tag push.
452452

453453
| Platform | Runner | Build tool | Package format |
454454
|---|---|---|---|
@@ -464,8 +464,8 @@ The GitHub Actions workflow at `.github/workflows/build.yml` builds release arte
464464
To publish a release:
465465

466466
```bash
467-
git tag plugin-v1.0.0
468-
git push origin plugin-v1.0.0
467+
git tag v1.0.0
468+
git push origin v1.0.0
469469
```
470470

471471
---

0 commit comments

Comments
 (0)