https://github.com/chaiyokung/tag-release-demo
A demo repository for creating Git tags and GitHub releases, showcasing version management with simple steps and guidance.
https://github.com/chaiyokung/tag-release-demo
demo git-tag github-releases learn
Last synced: 2 months ago
JSON representation
A demo repository for creating Git tags and GitHub releases, showcasing version management with simple steps and guidance.
- Host: GitHub
- URL: https://github.com/chaiyokung/tag-release-demo
- Owner: ChaiyoKung
- Created: 2024-12-12T02:24:49.000Z (6 months ago)
- Default Branch: main
- Last Pushed: 2024-12-12T05:53:50.000Z (6 months ago)
- Last Synced: 2025-02-07T16:39:50.944Z (4 months ago)
- Topics: demo, git-tag, github-releases, learn
- Language: TypeScript
- Homepage:
- Size: 79.1 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Tag/Release Demo
## Project setup
```bash
bun install
```## Run the project
```bash
# development mode
bun dev# production mode
bun start
```## Tag
```bash
# tag `v1.1.0` at latest commit
git tag v1.1.0
git push origin v1.1.0# move tag `v1` to latest commit
git tag -d v1
git push -d origin v1
git tag v1
git push origin v1
```