Skip to content

Commit 08b4a12

Browse files
authored
maybe fix tagging (#5)
* fix tagging? * fix typo
1 parent 13b191f commit 08b4a12

File tree

3 files changed

+11
-4
lines changed

3 files changed

+11
-4
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ on:
44
push:
55
branches:
66
- main
7+
tags:
8+
- 'v[0-9]+.[0-9]+.[0-9]+'
79
pull_request:
810
branches:
911
- main
@@ -176,7 +178,7 @@ jobs:
176178
python -m build
177179
178180
- name: Store the distribution packages
179-
if: matrix.cfg.label == 'installer' && runner.os != 'macOS'
181+
if: matrix.cfg.label == 'installer' && runner.os == 'Linux'
180182
uses: actions/upload-artifact@v4
181183
with:
182184
name: python-package-distributions

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ python test_backend_api.py
145145
## Release Procedure
146146

147147
* On a local clone on branch `main`, update the [CHANGELOG](changelog.md) with PRs, the new version number, and the release date. Commit it.
148-
* Make an annotated tag for the new version. Push it along with any cleanup commits (e.g., changelog above). If you've forked the repo, "origin" will probably be "upstream". See `git remote -v` for names.
148+
* Make an annotated tag for the new version. Push it along with any cleanup commits (e.g., changelog above). If you've forked the repo, "origin" will probably be "upstream". See `git remote -v` for names. You may need to disable direct push in [Settings](https://github.com/gt-sse-center/PandaModelsBackend/settings) (Branches, `main`, Edit)
149149
```
150150
git tag -a v0.5.0 -m "v0.5.0"
151151
git push --atomic origin main v0.5.0

changelog.md

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,6 @@
2121
#### Breaking Changes
2222

2323
#### New Features
24-
* [\#4] (https://github.com/gt-sse-center/PandaModelsBackend/pull/4) Maint --
25-
added Conda install notes, refined dependencies.
2624

2725
#### Enhancements
2826

@@ -31,6 +29,13 @@
3129
#### Misc.
3230

3331

32+
## v0.1.3 / 2025-03-17
33+
34+
#### New Features
35+
* [\#4] (https://github.com/gt-sse-center/PandaModelsBackend/pull/4) Maint --
36+
added Conda install notes, refined dependencies.
37+
38+
3439
## v0.1.1 / 2025-3-12
3540

3641
#### Breaking Changes

0 commit comments

Comments
 (0)