tag-publish 0.9.0.dev0__tar.gz → 0.9.0.dev2__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: tag-publish
3
- Version: 0.9.0.dev0
3
+ Version: 0.9.0.dev2
4
4
  Summary: Tools used to publish Python packages, Docker images and Helm charts for GitHub tag and branch
5
5
  Home-page: https://github.com/camptocamp/tag-publish
6
6
  License: FreeBSD
@@ -269,12 +269,21 @@ helm:
269
269
  - .
270
270
  ```
271
271
 
272
- This will publish the `helm` charts in the current folder using [chert releaser](https://github.com/helm/chart-releaser).
272
+ This will publish the `helm` charts in the current folder using [chart releaser](https://github.com/helm/chart-releaser).
273
273
 
274
274
  The artifacts will be attached to a GitHub release, and the `index.yaml` file will be updated in the `gh-pages` branch.
275
275
 
276
276
  The required permission is `contents: write`.
277
277
 
278
+ Create the required `gh-pages` branch:
279
+
280
+ ```bash
281
+ git checkout --orphan gh-pages
282
+ git reset --hard
283
+ git commit --allow-empty -m "Initialize gh-pages branch"
284
+ git push origin gh-pages
285
+ ```
286
+
278
287
  ## Contributing
279
288
 
280
289
  Install the pre-commit hooks:
@@ -232,12 +232,21 @@ helm:
232
232
  - .
233
233
  ```
234
234
 
235
- This will publish the `helm` charts in the current folder using [chert releaser](https://github.com/helm/chart-releaser).
235
+ This will publish the `helm` charts in the current folder using [chart releaser](https://github.com/helm/chart-releaser).
236
236
 
237
237
  The artifacts will be attached to a GitHub release, and the `index.yaml` file will be updated in the `gh-pages` branch.
238
238
 
239
239
  The required permission is `contents: write`.
240
240
 
241
+ Create the required `gh-pages` branch:
242
+
243
+ ```bash
244
+ git checkout --orphan gh-pages
245
+ git reset --hard
246
+ git commit --allow-empty -m "Initialize gh-pages branch"
247
+ git push origin gh-pages
248
+ ```
249
+
241
250
  ## Contributing
242
251
 
243
252
  Install the pre-commit hooks:
@@ -32,7 +32,7 @@ strict = true
32
32
 
33
33
  [tool.poetry]
34
34
  name = "tag-publish"
35
- version = "0.9.0.dev0"
35
+ version = "0.9.0.dev2"
36
36
  description = "Tools used to publish Python packages, Docker images and Helm charts for GitHub tag and branch"
37
37
  readme = "README.md"
38
38
  authors = ["Camptocamp <info@camptocamp.com>"]