Skip to content

Commit

Permalink
fix(workflow): Revert 2xl and add -y to apt commands (#70)
Browse files Browse the repository at this point in the history
  • Loading branch information
baldm authored Jul 19, 2024
1 parent bf977a1 commit 2f5fa3b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
build:
strategy:
matrix:
machine: [ubuntu-latest, self-hosted-arm64-2xl]
machine: [ubuntu-latest, self-hosted-arm64]
runs-on: ${{ matrix.machine }}
steps:
- uses: actions/checkout@v4
Expand All @@ -28,8 +28,8 @@ jobs:
key: ${{ runner.os }}-${{ hashFiles('**/build.gradle.kts') }}
- name: Install dependencies
run: |
sudo apt update
sudo apt install libcurl4-openssl-dev
sudo apt -y update
sudo apt -y install libcurl4-openssl-dev
- name: Build with Gradle
run: ./gradlew commonBinaries
- name: Move and apply correct permissions to binary
Expand All @@ -44,7 +44,7 @@ jobs:
change-log:
strategy:
matrix:
machine: [ubuntu-latest, self-hosted-arm64-2xl]
machine: [ubuntu-latest, self-hosted-arm64]
runs-on: ${{ matrix.machine }}
needs: build
timeout-minutes: 5
Expand Down

0 comments on commit 2f5fa3b

Please sign in to comment.