Skip to content

Commit

Permalink
Merge pull request #160 from MetaCell/feature/fix_actions
Browse files Browse the repository at this point in the history
building before packaging
  • Loading branch information
ddelpiano authored Aug 9, 2024
2 parents 1ea5afa + 2e071e4 commit 369d86d
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 4 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,10 @@ jobs:
- name: install dependencies
run: yarn
- name: build
run: yarn linux64
run: yarn build
- name: package
run: yarn linux64
- name: archive
run: tar -czf linux.tar.gz ./psyneulinkviewer-linux-x64

build_on_mac:
Expand All @@ -34,6 +36,8 @@ jobs:
- name: install dependencies
run: yarn
- name: build
run: yarn osx
run: yarn build
- name: package
run: yarn osx
- name: archive
run: tar -czf osx.tar.gz ./psyneulinkviewer-darwin-x64
8 changes: 6 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,10 @@ jobs:
- name: install dependencies
run: yarn
- name: build
run: yarn linux64
run: yarn build
- name: package
run: yarn linux64
- name: archive
run: tar -czf linux.tar.gz ./psyneulinkviewer-linux-x64
- name: release
uses: softprops/action-gh-release@v2
Expand All @@ -42,8 +44,10 @@ jobs:
- name: install dependencies
run: yarn
- name: build
run: yarn osx
run: yarn build
- name: package
run: yarn osx
- name: archive
run: tar -czf osx.tar.gz ./psyneulinkviewer-darwin-x64
- name: release
uses: softprops/action-gh-release@v2
Expand Down

0 comments on commit 369d86d

Please sign in to comment.