@@ -20,23 +20,24 @@ separate `v8` tag. Should automatically get `v8`, `v8.0`, `v8.0.0` as well as
20
20
21
21
- [ ] Create/push a new patch tag for fixes/changes to ` dagger-for-github `
22
22
23
- ``` console
24
- # Find the latest released patch https://github.com/dagger/dagger-for-github/releases
25
- # or via the ` gh` CLI. Use that to figure out the NEXT_VERSION.
26
- gh release view --repo dagger/dagger-for-github --json tagName,publishedAt
23
+ ``` console
24
+ # Find the latest released patch https://github.com/dagger/dagger-for-github/releases
25
+ # or via the `gh` CLI. Use that to figure out the NEXT_VERSION.
26
+ gh release view --repo dagger/dagger-for-github --json tagName,publishedAt
27
27
28
- NEXT_VERSION=vX.Y.Z # e.g. v1.2.3
28
+ NEXT_VERSION=vX.Y.Z # e.g. v1.2.3
29
29
30
- # Sign the tag, using the date as the comment, e.g. 2024-07-22
31
- git tag --sign -m $(date '+%Y-%m-%d') $NEXT_VERSION
32
- git push origin $NEXT_VERSION #shouldn't need to force since new tag
33
- ```
30
+ # Sign the tag, using the date as the comment, e.g. 2024-07-22
31
+ git tag --sign -m $(date '+%Y-%m-%d') $NEXT_VERSION
32
+ git push origin $NEXT_VERSION #shouldn't need to force since new tag
33
+ ```
34
34
35
35
- [ ] Create a new release from the patch tag (auto-fill release notes via the
36
36
GitHub UI or via the ` gh ` CLI)
37
- - [ ] Submit PR to change the version mentioned in Dagger docs. See example [ here] ( https://github.com/dagger/dagger/pull/9705/files )
38
37
39
- ``` console
40
- # --verify-tag will ensure the last tag creation step was done
41
- gh release create --generate-notes --verify-tag <NEXT_PATCH_VERSION>
42
- ```
38
+ ``` console
39
+ # --verify-tag will ensure the last tag creation step was done
40
+ gh release create --generate-notes --verify-tag <NEXT_PATCH_VERSION>
41
+ ```
42
+
43
+ - [ ] Submit PR to change the version mentioned in Dagger docs. See example [ here] ( https://github.com/dagger/dagger/pull/9705/files )
0 commit comments