From 53cadf3eb3bee03b975309070612f2a398e2db2c Mon Sep 17 00:00:00 2001 From: abap34 Date: Wed, 15 May 2024 00:32:12 +0900 Subject: [PATCH] Delete release.yaml --- .github/workflows/release.yaml | 30 ------------------------------ 1 file changed, 30 deletions(-) delete mode 100644 .github/workflows/release.yaml diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml deleted file mode 100644 index 3fe4fc5..0000000 --- a/.github/workflows/release.yaml +++ /dev/null @@ -1,30 +0,0 @@ -name: Release for all platforms - -on: - release: - types: [published] - -jobs: - build_and_upload: - runs-on: ubuntu-latest - strategy: - matrix: - os: [ubuntu-latest, windows-latest, macos-14] - - steps: - - name: Checkout code - uses: actions/checkout@v2 - - - name: Build - run: bash build.sh - - - name: Upload Release - uses: actions/upload-release-asset@v1 - with: - upload_url: ${{ github.event.release.upload_url }} - asset_path: build/almo - asset_name: ${{ matrix.os }} - asset_content_type: application/octet-stream - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} -