From 067c4dfabf5f546e77756d37d9459b6a68cff48b Mon Sep 17 00:00:00 2001 From: Yuval Adam <_@yuv.al> Date: Mon, 21 Oct 2019 19:29:32 +0300 Subject: test --- .github/workflows/release.yml | 34 +++++++++++++++++----------------- 1 file changed, 17 insertions(+), 17 deletions(-) (limited to '.github/workflows') 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 -- cgit v1.3.1