https://github.com/colevoss/release-test
https://github.com/colevoss/release-test
Last synced: 5 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/colevoss/release-test
- Owner: colevoss
- Created: 2024-04-16T16:20:11.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-04-24T19:46:18.000Z (about 2 years ago)
- Last Synced: 2025-04-08T05:51:15.429Z (about 1 year ago)
- Size: 7.65 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
1. Create/Update {proj}-prerelease Github release on merge to main per project
-- Re-use changelog generation from current tag workflow
-- use ['prereleased', 'edited']
-- Check that release is still pre-release and not ready for release
2. When {proj}-prerelease Github release is updated, cut release for corresponding project
-- See [cut release demo file](./.github/workflows/cut-release.yml)
```ts
const rel = getRelease(`${proj}-pre`)
if (rel.isPrerelease) {
}
if (!rel) {
createRelease()
}
```