diff options
| author | Yuval Adam <_@yuv.al> | 2019-10-21 19:29:32 +0300 |
|---|---|---|
| committer | Yuval Adam <_@yuv.al> | 2019-10-21 19:29:32 +0300 |
| commit | 067c4dfabf5f546e77756d37d9459b6a68cff48b (patch) | |
| tree | 82fc17b8fb44211f0c2afa48c853689c42caf296 /.github/workflows/release.yml | |
| parent | b19b4ce36cb4bc07a665b0a86911b3ade444ff37 (diff) | |
test
Diffstat (limited to '.github/workflows/release.yml')
| -rw-r--r-- | .github/workflows/release.yml | 34 |
1 files changed, 17 insertions, 17 deletions
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 606a8e4..71a863e 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -5,23 +5,23 @@ on: [push] jobs: release: name: Release - runs-on: ubuntu-latest #${{ matrix.os }} - # strategy: - # matrix: - # os: [macOS-latest, windows-latest, ubuntu-latest] - # include: - # - name: macOS-latest - # archive: tar - # output: streamlib-${{ github.ref }}-x86_64-apple-darwin.tar.gz - # content_type: application/gzip - # - name: windows-latest - # archive: zip - # output: streamlib-${{ github.ref }}-x86_64-pc-windows-msvc.zip - # content_type: application/zip - # - name: ubuntu-latest - # archive: tar - # output: streamlib-${{ github.ref }}-x86_64-unknown-linux-gnu.tar.gz - # content_type: application/gzip + runs-on: ${{ matrix.os }} + strategy: + matrix: + os: [macOS-latest, windows-latest, ubuntu-latest] + include: + - name: macOS-latest + archive: tar + # output: streamlib-${{ github.ref }}-x86_64-apple-darwin.tar.gz + # content_type: 'application/gzip' + - name: windows-latest + archive: zip + # output: streamlib-${{ github.ref }}-x86_64-pc-windows-msvc.zip + # content_type: application/zip + - name: ubuntu-latest + archive: tar + # output: streamlib-${{ github.ref }}-x86_64-unknown-linux-gnu.tar.gz + # content_type: application/gzip steps: - name: Checkout |
