Skip to content

Commit

Permalink
Fix artifact copying
Browse files Browse the repository at this point in the history
  • Loading branch information
drewolson committed Jul 6, 2023
1 parent 69f4d09 commit 0382d61
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,17 +20,17 @@ jobs:
- name: Check Formatting
run: make format-check
- name: Test
run: make test
r run: make test
- name: Build
run: make build
- name: Make Artifacts Directory
run: mkdir artifacts
- name: Copy CLI Artifact
run: cp ${{ steps.stack.outputs.local-bin-path }}/bridge-cli-exe ./artifacts
run: cp $(stack exec which bridge-cli-exe) ./artifacts
- name: Copy Slack Artifact
run: cp ${{ steps.stack.outputs.local-bin-path }}/bridge-slack-exe ./artifacts
run: cp $(stack exec which bridge-slack-exe) ./artifacts
- name: Copy Discord Artifact
run: cp ${{ steps.stack.outputs.local-bin-path }}/bridge-discord-exe ./artifacts
run: cp $(stack exec which bridge-discord-exe) ./artifacts
- name: Tar Artifacts
run: tar -cvf artifacts.tar ./artifacts
- uses: actions/upload-artifact@v2
Expand Down

0 comments on commit 0382d61

Please sign in to comment.