Skip to content

Commit

Permalink
auto tag
Browse files Browse the repository at this point in the history
  • Loading branch information
okdshin committed Nov 30, 2023
1 parent dd15698 commit c2e2fa3
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -80,14 +80,18 @@ jobs:
cd dist
zip -ry flatline_lsp_ubuntu2004_${{ matrix.build }}.zip flatline_lsp
- name: Get Commit ID
id: get_commit_id
run: echo ::set-output name=commit_id::$(git log -1 --format=%h)

- name: Create release
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: v0.0.0
release_name: Release v0.0.0
tag_name: v0.0.0_${{ steps.get_commit_id.outputs.commit_id }}
release_name: Release v0.0.0_${{ steps.get_commit_id.outputs.commit_id }}
body: |
Release test
draft: false
Expand Down

0 comments on commit c2e2fa3

Please sign in to comment.