Compare commits

..

2 Commits

Author SHA1 Message Date
32a7f6a0f0 feature/v2.4.0-rc4 (#2578)
* v2.4.0-rc3

* v2.4.0-rc4
2023-04-12 22:01:24 +08:00
5bbec48679 v2.4.0-rc2 (#2575) 2023-04-12 21:14:03 +08:00
3 changed files with 13 additions and 12 deletions

View File

@ -34,7 +34,7 @@ jobs:
- name: Build CLI Binary For All Platform
run: |
cd cmd/gf
gf build main.go -n gf -a amd64,386 -s windows,linux,darwin
gf build main.go -n gf -a all -s all
- name: Move Files Before Release
run: |

View File

@ -19,16 +19,17 @@ jobs:
- name: Checkout Github Code
uses: actions/checkout@v3
- name: Update Dependencies
run: make gftidy
- name: Commit & Push Changes
uses: actions-js/push@master
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
author_name: TagRobot
author_email: tagrobot@goframe.org
message: "auto update version to ${{ github.ref_name }}"
# - name: Update Dependencies
# run: make gftidy
#
# - name: Commit & Push Changes
# uses: actions-js/push@master
# with:
# github_token: ${{ secrets.GITHUB_TOKEN }}
# branch: master
# author_name: TagRobot
# author_email: tagrobot@goframe.org
# message: "auto update version to ${{ github.ref_name }}"
- name: Auto Creating Tags For Contrib Packages
run: |

View File

@ -2,5 +2,5 @@ package gf
const (
// VERSION is the current GoFrame version.
VERSION = "v2.4.0-rc"
VERSION = "v2.4.0-rc4"
)