Skip to content

Commit

Permalink
fix: Workflow missong section
Browse files Browse the repository at this point in the history
  • Loading branch information
gcarreno committed Apr 8, 2024
1 parent 27fbe1f commit 3fca85a
Showing 1 changed file with 18 additions and 17 deletions.
35 changes: 18 additions & 17 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,26 +46,27 @@ jobs:

release:
if: contains(github.ref_type, 'tag')

name: Create GitHub Release
needs: [ build ]
with:
fail-fast: false
runs-on: ubuntu-latest
needs: [ build ]

name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
submodules: true
steps:
name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
submodules: true

name: Build Release
run: make release-all
name: Build Release
run: make release-all

name: Create GitHub release
uses: softprops/action-gh-release@v1
with:
name: EIYARO ${{ env.tag }}
body: ${{ steps.git-cliff.outputs.content }}
files: target/*
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
name: Create GitHub release
uses: softprops/action-gh-release@v1
with:
name: EIYARO ${{ env.tag }}
body: ${{ steps.git-cliff.outputs.content }}
files: target/*
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 3fca85a

Please sign in to comment.