An open API service indexing awesome lists of open source software.

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.

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
```