Skip to content

Commit

Permalink
fixing binaries
Browse files Browse the repository at this point in the history
  • Loading branch information
alexei-led committed Jan 10, 2023
1 parent 52a4302 commit c9c9efa
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 @@ -36,8 +36,8 @@ jobs:
- uses: actions/upload-artifact@v3
with:
name: pumba-binaries
path: .bin/*
name: 'pumba-binaries'
path: .bin/**


create-release:
Expand All @@ -61,7 +61,7 @@ jobs:
id: download
with:
name: 'pumba-binaries'
path: .bin/
path: ${{ github.workspace }}/.bin/

- name: release
uses: softprops/action-gh-release@v1
Expand All @@ -70,7 +70,7 @@ jobs:
tag_name: ${{ steps.get_tag.outputs.git_tag }}
body: ${{steps.build_changelog.outputs.changelog}}
files: |
.bin/*
${{ github.workspace }}/.bin/**
push:
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/')
name: push
Expand Down

0 comments on commit c9c9efa

Please sign in to comment.