Skip to content

Commit

Permalink
Update publish-binary.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
nickdelgrosso authored Jan 24, 2023
1 parent 782cd83 commit 9e4d6cc
Showing 1 changed file with 14 additions and 2 deletions.
16 changes: 14 additions & 2 deletions .github/workflows/publish-binary.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,20 @@ on:

jobs:
build:
name: Publish binaries
runs-on: ubuntu-latest
name: Publish for ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
include:
- os: ubuntu-latest
artifact_name: callscript
asset_name: callscript-linux-amd64
- os: windows-latest
artifact_name: callscript.exe
asset_name: callscript-windows-amd64
- os: macos-latest
artifact_name: callscript
asset_name: callscript-macos-amd64
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.10
Expand Down

0 comments on commit 9e4d6cc

Please sign in to comment.