Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
nickdelgrosso committed Jan 24, 2023
2 parents 1f9d561 + 9e4d6cc commit 9fc1bc4
Showing 1 changed file with 15 additions and 2 deletions.
17 changes: 15 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 All @@ -32,3 +44,4 @@ jobs:
file_glob: true
tag: ${{ github.ref }}
overwrite: true
asset_name: ${{ matrix.asset_name }}

0 comments on commit 9fc1bc4

Please sign in to comment.