summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/release.yml34
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