mirror of
https://github.com/jxpeng98/obsidian-to-NotionNext
synced 2026-07-29 08:08:34 +08:00
6 lines
123 B
Bash
Executable File
6 lines
123 B
Bash
Executable File
#!/bin/bash
|
|
node update-version.js $1
|
|
git add .
|
|
git commit -m "Update version to $1"
|
|
git tag -a $1 -m $1
|
|
git push origin $1 |