Skip to content

Commit

Permalink
v1.0 #
Browse files Browse the repository at this point in the history
  • Loading branch information
huapox committed Dec 2, 2024
1 parent 9ecd223 commit b0101c5
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/docker-build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -42,15 +42,16 @@ jobs:
#
# https://blog.csdn.net/m0_57236802/article/details/133850667
# Parameter token or opts.auth is required
# Published releases must have a valid tag: pre_receive Sorry, branch or tag names starting with 'refs/' are not allowed.
- name: Create Release
id: create_release
uses: actions/create-release@v1
# https://blog.csdn.net/gitblog_00919/article/details/142539600
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} #官方内置的 secrets ,我们直接使用就可
with:
tag_name: ${{ github.ref }}
release_name: Release ${{ github.ref }}
tag_name: v1.0 #${{ github.ref }}
release_name: Release v1.0 #${{ github.ref }}
body: |
Automated release for tag ${{ github.ref }}
draft: false
Expand Down

0 comments on commit b0101c5

Please sign in to comment.