From 156c63db504c0d1487567265607809e144c9cc00 Mon Sep 17 00:00:00 2001 From: ktechmidas Date: Tue, 15 Oct 2024 14:38:11 +0300 Subject: [PATCH] fixed tag + prerelease --- .github/workflows/release.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 6e0629ca..42577463 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -43,6 +43,11 @@ jobs: - name: Check out code uses: actions/checkout@v4 + - name: Create Git tag + run: | + git tag ${{ github.event.inputs.tag }} + git push origin ${{ github.event.inputs.tag }} + - name: Install Rust toolchain uses: actions-rs/toolchain@v1 with: @@ -123,6 +128,7 @@ jobs: env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: + tag_name: ${{ github.event.inputs.tag }} files: ./release/dash-evo-tool-* draft: false - prerelease: false \ No newline at end of file + prerelease: true \ No newline at end of file