ci(debug): change runner os

MacOS has lower ram allocated to it than ubuntu now, so it is no longer needed.

https://docs.github.com/en/actions/writing-workflows/choosing-where-your-workflow-runs/choosing-the-runner-for-a-job#choosing-github-hosted-runners
This commit is contained in:
summertime
2024-10-07 17:27:01 +02:00
committed by GitHub
parent c3ce5c3ed6
commit 983e5932c7

View File

@@ -9,7 +9,7 @@ on:
jobs:
job_armv8:
runs-on: macos-latest
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v4
@@ -69,7 +69,7 @@ jobs:
path: app/build/outputs/apk/armv8/debug/*.apk
job_armv7:
runs-on: macos-latest
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v4
@@ -129,7 +129,7 @@ jobs:
path: app/build/outputs/apk/armv7/debug/*.apk
job_universal:
runs-on: macos-latest
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v4