Skip to content

Commit 8177a96

Browse files
committed
Remove non-android builds from release for now
1 parent 1cf041f commit 8177a96

File tree

1 file changed

+41
-40
lines changed

1 file changed

+41
-40
lines changed

.github/workflows/build.yml

Lines changed: 41 additions & 40 deletions
Original file line numberDiff line numberDiff line change
@@ -146,9 +146,9 @@ jobs:
146146
fail-fast: false
147147
matrix:
148148
name:
149-
- macos_arm64
150-
- macos_x86_64
151-
- ios
149+
# - macos_arm64
150+
# - macos_x86_64
151+
# - ios
152152
# - raspberry-pi-os_armv6
153153
# - raspberry-pi-os_armv7
154154
# - raspberry-pi-os_armv8
@@ -158,6 +158,7 @@ jobs:
158158
# - ubuntu-20.04_x86_64
159159
# - ubuntu-22.04_x86_64
160160
- android
161+
- android_prefixed
161162
name: Release ${{ matrix.name }}
162163
if: contains(github.ref, 'tags/m')
163164
needs:
@@ -190,40 +191,40 @@ jobs:
190191
asset_content_type: application/gzip
191192
# Windows だけ Content-Type が違うので別で記述する
192193
# Windows has a different Content-Type, so handle it separately.
193-
upload-assets-windows:
194-
strategy:
195-
fail-fast: false
196-
matrix:
197-
name:
198-
- windows_x86_64
199-
- windows_arm64
200-
name: Upload windows
201-
if: contains(github.ref, 'tags/m')
202-
needs:
203-
- create-release
204-
runs-on: ubuntu-latest
205-
steps:
206-
- name: Checkout code
207-
uses: actions/checkout@v2
208-
- name: Download ${{ matrix.name }}
209-
uses: actions/download-artifact@v1
210-
with:
211-
name: webrtc.${{ matrix.name }}.zip
212-
- uses: actions/download-artifact@v1
213-
with:
214-
name: create-release.env
215-
- name: Env to output
216-
shell: bash
217-
run: |
218-
source create-release.env/create-release.env
219-
echo "::set-output name=upload_url::$UPLOAD_URL"
220-
id: env
221-
- name: Upload windows Release Asset
222-
uses: actions/[email protected]
223-
env:
224-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
225-
with:
226-
upload_url: ${{ steps.env.outputs.upload_url }}
227-
asset_path: webrtc.${{ matrix.name }}.zip/webrtc.zip
228-
asset_name: webrtc.${{ matrix.name }}.zip
229-
asset_content_type: application/zip
194+
# upload-assets-windows:
195+
# strategy:
196+
# fail-fast: false
197+
# matrix:
198+
# name:
199+
# - windows_x86_64
200+
# - windows_arm64
201+
# name: Upload windows
202+
# if: contains(github.ref, 'tags/m')
203+
# needs:
204+
# - create-release
205+
# runs-on: ubuntu-latest
206+
# steps:
207+
# - name: Checkout code
208+
# uses: actions/checkout@v2
209+
# - name: Download ${{ matrix.name }}
210+
# uses: actions/download-artifact@v1
211+
# with:
212+
# name: webrtc.${{ matrix.name }}.zip
213+
# - uses: actions/download-artifact@v1
214+
# with:
215+
# name: create-release.env
216+
# - name: Env to output
217+
# shell: bash
218+
# run: |
219+
# source create-release.env/create-release.env
220+
# echo "::set-output name=upload_url::$UPLOAD_URL"
221+
# id: env
222+
# - name: Upload windows Release Asset
223+
# uses: actions/[email protected]
224+
# env:
225+
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
226+
# with:
227+
# upload_url: ${{ steps.env.outputs.upload_url }}
228+
# asset_path: webrtc.${{ matrix.name }}.zip/webrtc.zip
229+
# asset_name: webrtc.${{ matrix.name }}.zip
230+
# asset_content_type: application/zip

0 commit comments

Comments
 (0)