Skip to content

Commit

Permalink
clean up the workflow file
Browse files Browse the repository at this point in the history
  • Loading branch information
anadis504 committed May 15, 2023
1 parent 35acb8b commit c3e4e5e
Showing 1 changed file with 2 additions and 13 deletions.
15 changes: 2 additions & 13 deletions .github/workflows/data-parser-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,19 +39,11 @@ jobs:
- name: Build execution file
run: poetry run pyinstaller main.py --onefile

- uses: actions/setup-node@v3
with:
node-version: '16'

- 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
uses: actions/upload-artifact@v3
with:
name: parser-binary
path: data-parser/dist
Expand All @@ -64,12 +56,9 @@ jobs:
run:
working-directory: ./data-parser
steps:
- uses: actions/setup-node@v3
with:
node-version: '16'

- name: Download built binary
uses: actions/download-artifact@v2
uses: actions/download-artifact@v3
with:
name: parser-binary
path: ./dist/
Expand Down

0 comments on commit c3e4e5e

Please sign in to comment.