mirror of
https://github.com/jxpeng98/obsidian-to-NotionNext
synced 2026-07-30 00:48:36 +08:00
7 lines
124 B
Bash
Executable File
7 lines
124 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
|