Skip to content

Commit

Permalink
[documentation]: added example of chrome extension manifest.json (#5)
Browse files Browse the repository at this point in the history
[documentation]: added example of chrome extension manifest.json (#5)
  • Loading branch information
leblancmeneses authored May 30, 2024
1 parent 164bc9c commit 7b36795
Show file tree
Hide file tree
Showing 3 changed files with 68 additions and 23,137 deletions.
20 changes: 15 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,13 +41,23 @@ steps:
If you have an existing application you can modify the `major`.`minor` and `shift` inputs to match the current version of your application.
See our [.github/workflows/tests.version-autopilot.yml](.github/workflows/tests.version-autopilot.yml) for how rollover works. We leverage `${{github.run_number}}` internally to increment the version.

If you are looking for semantic versioning research [release pipeline](https://docs.github.com/en/repositories/releasing-projects-on-github/managing-releases-in-a-repository) and git tags.
If you are looking for semantic versioning research `git tags` and [release pipelines](https://docs.github.com/en/repositories/releasing-projects-on-github/managing-releases-in-a-repository).


## Need help with your continuous delivery or k8s clusters?
### Example steps for a chrome extension:

Large language models (LLMs) cannot solve your organization's people problems.
If your software teams need help and are falling behind, consider an actual human
who can spot and help steer the ship away from danger.
```yaml
- name: update manifest version
run: |
manifest=tabsift/extension/manifest.json
jq --arg version "${{ steps.version-autopilot.outputs.version_autopilot_string }}" '.version = $version' $manifest > tmp.json && mv tmp.json $manifest
```


## Need Help?

Large language models (LLMs) cannot solve your organization's people problems. If your software teams are struggling and falling behind, consider engaging an actual human expert who can identify product and development issues and provide solutions.

Common areas where we can assist include continuous delivery, cloud migrations, Kubernetes cluster cost optimizations, GitHub Actions and GitHub Codespaces.

Contact us at [improvingstartups.com](https://improvingstartups.com).
1 change: 1 addition & 0 deletions apps/version-autopilot/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
"outputPath": "dist/apps/version-autopilot",
"format": ["cjs"],
"bundle": true,
"minify": true,
"thirdParty": true,
"main": "apps/version-autopilot/src/main.ts",
"tsConfig": "apps/version-autopilot/tsconfig.app.json",
Expand Down
Loading

0 comments on commit 7b36795

Please sign in to comment.