Skip to content

Commit

Permalink
main [v0.0.13]
Browse files Browse the repository at this point in the history
 master >> main
  • Loading branch information
SUNsung committed Jul 26, 2024
1 parent cd89048 commit befa1e1
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 8 deletions.
1 change: 1 addition & 0 deletions .github/workflows/codacy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ on:
pull_request:
branches: [ "main" ]


permissions:
contents: read

Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,10 +41,10 @@ jobs:
exit 1
fi
- name: Checkout to the [master]
- name: Checkout to the [main]
run: |
if git branch -a | grep -qw "origin/master"; then
git checkout master
if git branch -a | grep -qw "origin/main"; then
git checkout main
else
echo "No known branch found!"
exit 1
Expand All @@ -61,4 +61,4 @@ jobs:
git add ./_run/values/ver.txt
git commit -m "actions [$new_version] "$'\n'"Build: [${{ env.BUILD_VER }}] >> [$new_version]"
git push origin HEAD:master
git push origin HEAD:main
2 changes: 1 addition & 1 deletion _run/values/ver.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v0.0.12
v0.0.13
6 changes: 3 additions & 3 deletions const.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ package sys
const (
GlobalName string = "fReadSYS"
GlobalDateUpdate string = "07-26-2024"
GlobalHash string = "03e3c104a6b280214727400925bcfebf8db90f3d"
GlobalHash string = "cd89048ffd03260b78fb8f03059c22f8427c6017"

GlobalVersion string = "v0.0.12"
GlobalVersion string = "v0.0.13"
GlobalVersionMajor string = "v0"
GlobalVersionMinor uint16 = 0
GlobalVersionPatch uint16 = 12
GlobalVersionPatch uint16 = 13
)

0 comments on commit befa1e1

Please sign in to comment.