From 1170ed1c33ee2263a94e694bdfba5f48e36e66e7 Mon Sep 17 00:00:00 2001 From: Cheap Nightbot Date: Fri, 15 Nov 2024 23:28:31 +0900 Subject: [PATCH] Update main.yml remove windows TWT `` not in windows ~ --- .github/workflows/main.yml | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 783eea6..3bf4924 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -11,7 +11,7 @@ jobs: runs-on: ${{ matrix.os }} strategy: matrix: - os: [ubuntu-latest, macos-latest, windows-latest] + os: [ubuntu-latest, macos-latest] # Removed windows-latest steps: - name: Checkout Code @@ -24,8 +24,6 @@ jobs: sudo apt-get install -y gcc make elif [ ${{ matrix.os }} == 'macos-latest' ]; then brew install gcc make - elif [ ${{ matrix.os }} == 'windows-latest' ]; then - choco install mingw fi shell: bash @@ -61,9 +59,6 @@ jobs: elif [ ${{ matrix.os }} == 'macos-latest' ]; then FILENAME="calc-macos-x86_64-${BUILD_DATE}.zip" zip -r $FILENAME build/calc - elif [ ${{ matrix.os }} == 'windows-latest' ]; then - FILENAME="calc-win-x86_64-${BUILD_DATE}.zip" - zip -r $FILENAME build/calc.exe fi # Upload the binary zip file to the release curl -X POST -H "Authorization: token ${{ secrets.GITHUB_TOKEN }}" \