Skip to content

Commit

Permalink
do not create tag
Browse files Browse the repository at this point in the history
  • Loading branch information
bitfl0wer committed May 15, 2024
1 parent a880017 commit 0ce98ad
Showing 1 changed file with 3 additions and 7 deletions.
10 changes: 3 additions & 7 deletions .github/workflows/cross-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ jobs:

release:
name: Release
needs: [build-linux, build-windows, build-macos]
needs: [build-linux, build-macos, build-windows]
runs-on: ubuntu-latest
steps:
- name: Checkout code
Expand All @@ -108,15 +108,11 @@ jobs:
- name: Download artifacts
uses: actions/download-artifact@v2

- name: Create Tag
run: git tag ${{ github.event.inputs.tag }}

- name: Create and upload a Release
uses: marvinpinto/action-automatic-releases@latest
with:
repo_token: "${{ secrets.GITHUB_TOKEN }}"
draft: false
automatic_release_tag: "latest"
prerelease: false
title: ${{ github.event.inputs.tag }}
title: "Release ${{ github.ref }}"
files: |
./artifacts/*

0 comments on commit 0ce98ad

Please sign in to comment.