Browse Source

CI: set platform build build_linux script to keep buildx happy (#6829)

The runners don't have emulation set up so the default multi-platform build
wont work.
Daniel Hiltgen 7 months ago
parent
commit
0ec2915ea7
1 changed files with 2 additions and 2 deletions
  1. 2 2
      .github/workflows/release.yaml

+ 2 - 2
.github/workflows/release.yaml

@@ -359,7 +359,7 @@ jobs:
     environment: release
     runs-on: linux
     env:
-      BUILD_ARCH: amd64
+      PLATFORM: linux/amd64
     steps:
       - uses: actions/checkout@v4
         with:
@@ -382,7 +382,7 @@ jobs:
     environment: release
     runs-on: linux-arm64
     env:
-      BUILD_ARCH: arm64
+      PLATFORM: linux/arm64
     steps:
       - uses: actions/checkout@v4
         with: