Skip to content

Commit

Permalink
tryinh to fix actions uploads
Browse files Browse the repository at this point in the history
  • Loading branch information
anadis504 committed May 15, 2023
1 parent 14cd5e1 commit 4759895
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/data-parser-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,12 +45,16 @@ jobs:

- name: rename built binary
run: poetry run mv ./dist/main ./dist/main-${{ matrix.os }}

- name: just checking the dist folder
run: |
ls
ls ./dist/
- name: Store built binary
uses: actions/upload-artifact@v2
with:
name: parser-binary
path: ./dist
path: ./dist/
retention-days: 5

release:
Expand All @@ -68,7 +72,7 @@ jobs:
uses: actions/download-artifact@v2
with:
name: parser-binary
path: dist
path: ./dist/

- name: Release
uses: softprops/action-gh-release@v1
Expand Down

0 comments on commit 4759895

Please sign in to comment.