Skip to content

Commit

Permalink
ci: change artifact paths
Browse files Browse the repository at this point in the history
  • Loading branch information
JFWenisch authored Sep 27, 2022
1 parent 6904e05 commit 0325fd2
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions .github/workflows/build-go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -112,14 +112,21 @@ jobs:
uses: actions/download-artifact@v3
with:
name: dist


- name: Display structure of downloaded files
run: ls -R

- name: Display structure of downloaded files
run: ls -R

- name: Create a GitHub release
uses: ncipollo/release-action@v1
if: github.ref == 'refs/heads/develop'

with:
tag: ${{needs.version.outputs.tag}}
name: Release ${{needs.version.outputs.tag}}
artifacts: "dist/semver-cli-*"
artifacts: "semver-cli-*"
prerelease: true
artifactErrorsFailBuild: true
body: ${{needs.version.outputs.changelog}}

0 comments on commit 0325fd2

Please sign in to comment.