diff options
| author | 2024-06-29 22:54:45 +0100 | |
|---|---|---|
| committer | 2024-06-29 22:54:45 +0100 | |
| commit | 056098b893a05b193afe80de9897f06d36b6c2b4 (patch) | |
| tree | 459bdafad3b48b11fe520a0723a0b04f20395993 | |
| parent | eb4dc1fa754d189808bf4bf33eae135ca41f4134 (diff) | |
| download | viewercount-056098b893a05b193afe80de9897f06d36b6c2b4.tar.gz viewercount-056098b893a05b193afe80de9897f06d36b6c2b4.tar.bz2 viewercount-056098b893a05b193afe80de9897f06d36b6c2b4.zip | |
[ci] Remove unsupported platforms
| -rw-r--r-- | .github/workflows/release.yml | 15 | 
1 files changed, 1 insertions, 14 deletions
| diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 720b337..0ee750f 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -18,14 +18,6 @@ jobs:              target: aarch64-unknown-linux-gnu              bin: viewercount              name: viewercount-${{ github.ref_name }}-linux-aarch64 -          - os: windows-latest -            target: x86_64-pc-windows-msvc -            bin: viewercount.exe -            name: viewercount-${{ github.ref_name }}-windows-x86_64 -          - os: macos-latest -            target: x86_64-apple-darwin -            bin: viewercount -            name: viewercount-${{ github.ref_name }}-darwin-x86_64      runs-on: ${{ matrix.platform.os }}      steps:      - uses: actions/checkout@v4 @@ -43,12 +35,7 @@ jobs:          cp target/${{ matrix.platform.target }}/release/${{ matrix.platform.bin }} ${{ matrix.platform.name }}          cp LICENSE.txt ${{ matrix.platform.name }}          cp README.md ${{ matrix.platform.name }} -        if [[ "${{ matrix.platform.os }}" == "windows-latest" ]] -        then -          7z a ${{ matrix.platform.name }}.zip ${{ matrix.platform.name }} -        else -          tar czvf ${{ matrix.platform.name }}.tar.gz ${{ matrix.platform.name }} -        fi +        tar czvf ${{ matrix.platform.name }}.tar.gz ${{ matrix.platform.name }}      - name: Generate Changelog        run: utils/generate_changelog.sh > ${{ github.workspace }}-CHANGELOG.md      - name: Publish | 
