bump to v1.3.66 #13
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| on: | |
| push: | |
| tags: | |
| - "v*.*.*" | |
| name: release-build | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: write | |
| discussions: write | |
| # permissions: write-all # this is the FIX | |
| steps: | |
| - name: Install Go | |
| uses: actions/setup-go@v5 | |
| with: | |
| go-version: ^1.24.5 | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Checkout tag | |
| run: | | |
| git fetch --depth=1 origin +refs/tags/*:refs/tags/* | |
| tag_name="${GITHUB_REF##*/}" | |
| echo Tag $tag_name | |
| git checkout $tag_name | |
| echo "TAG_NAME=${tag_name}" >> $GITHUB_ENV | |
| - name: Build | |
| run: | | |
| make V=1 release -j$(nproc) | |
| - name: Release | |
| uses: softprops/action-gh-release@v2 | |
| if: startsWith(github.ref, 'refs/tags/') | |
| with: | |
| generate_release_notes: true | |
| discussion_category_name: Announcements | |
| # # repo_token: ${{ secrets.GITHUB_TOKEN }} | |
| token: ${{ secrets.GITHUB_TOKEN }} | |
| # # tag: ${{ github.ref }} | |
| # tag_name: ${{ github.ref_name }} | |
| # name: ${{ env.TAG_NAME }} | |
| # # overwrite: true | |
| # overwrite_files: true | |
| # # file_glob: true | |
| append_body: true | |
| draft: false | |
| prerelease: false | |
| preserve_order: true | |
| # body_path: relnotes.md | |
| body: | | |
| Store is a high-performance key-value store and hierarchical configuration set manager, which loads and merge app settings from any external sources, and provides a unify interface to access them. Try `appSettings.MustBool("sys.logging.enabled", false)` to ensure whether we should enable logging plugin in coding. | |
| ${{ github.event.head_commit.message }} | |
| files: | | |
| ./*.zip | |
| # | |
| # This release was created by: ${{ github.event.sender.login }} | |
| # Release of Store, a high-performance k-v store and hierarchical | |
| # configuration set manager, | |
| # built from commit ${{ env.SHORT_SHA }}, is now available. | |
| # | |
| # # body: | | |
| # # ${{ steps.read_release.outputs.RELEASE_BODY }} | |
| # body: | | |
| # ${{ steps.read_release_notes_0.outputs.RELEASE_BODY }} | |
| # body_path: ${{ github.workspace }}-CHANGELOG.txt | |
| # body_path: RELNOTES.md | |
| # files: | | |
| # LICENSE | |
| # RELNOTES.md |