Skip to content

Commit

Permalink
Merge pull request #13 from thalesmg/ci-release-2
Browse files Browse the repository at this point in the history
ci: fix release workflow
  • Loading branch information
thalesmg authored Oct 11, 2024
2 parents f860ae7 + fdded6b commit c57cdcc
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@ jobs:
if-no-files-found: error

release:
runs-on: ubuntu-latest
needs:
- init
- build
Expand All @@ -66,13 +67,12 @@ jobs:
with:
name: emqx_data_converter
- name: rename executable
run: mv emqx_data_converter emqx_data_converter-ubuntu${{ inputs.init.outputs.UBUNTU_VSN }}
run: mv emqx_data_converter emqx_data_converter-ubuntu${{ needs.init.outputs.UBUNTU_VSN }}
- name: Create Release
if: github.event_name == 'tag'
uses: softprops/[email protected]
with:
name: emqx-data-converter ${{ github.ref_name }}
body: emqx-data-converter ${{ github.ref_name }}
files: emqx_data_converter-*
draft: false
prerelease: false
draft: ${{ github.event_name != 'tag' }}
prerelease: ${{ github.event_name != 'tag' }}

0 comments on commit c57cdcc

Please sign in to comment.