This commit is contained in:
Benjamin Toby
2025-01-16 06:31:09 +01:00
parent a3e20f15ef
commit c09409e182
3 changed files with 12 additions and 1 deletions
BIN
View File
Binary file not shown.
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "@moduletrace/nodecid",
"version": "1.0.7",
"version": "1.0.0",
"description": "Simple CI/CD process",
"main": "dist/index.js",
"bin": {
Executable
+11
View File
@@ -0,0 +1,11 @@
#!/bin/bash
if [ -z "$1" ]; then
msg="Updates"
else
msg="$1"
fi
git add .
git commit -m "$msg"
git push