kitgit

tirbofish/dropbear · commit

933e7157392e3c25a1c1606c8509acbfe860b3e6

updates action, still broken

Unverified

tk <4tkbytes@pm.me> · 2025-11-11 07:15

view full diff

diff --git a/.github/workflows/create_executable.yaml b/.github/workflows/create_executable.yaml
index 7d407fe..500b48f 100644
--- a/.github/workflows/create_executable.yaml
+++ b/.github/workflows/create_executable.yaml
@@ -1,18 +1,15 @@
 name: Build Executables
-
 on:
   push:
     branches:
       - '**'
   pull_request: {}
-
+  workflow_dispatch:  # Add manual trigger
 jobs:
   build:
-    if: contains(github.event.head_commit.message, 'jarvis, run github actions')
+    if: contains(github.event.head_commit.message, 'jarvis, run github actions') || github.event_name == 'workflow_dispatch'
     name: Build for ${{ matrix.os_name }}
     runs-on: ${{ matrix.os }}
-    env:
-      AWS_LC_SYS_PREBUILT_NASM: "1"
     strategy:
       matrix:
         include:
@@ -22,104 +19,66 @@ jobs:
             ext: .exe
           - os: ubuntu-latest
             os_name: linux-x64
-            target: x86_64-unknown-linux-gnu
+            target: x86_64-unknown-linux-musl
             ext: ""
           - os: macos-latest
             os_name: macos-arm64
             target: aarch64-apple-darwin
             ext: ""
-
     steps:
       - uses: actions/checkout@v4
         with:
           submodules: 'recursive'
-
       - name: Set up JDK 21
         uses: actions/setup-java@v4
         with:
           java-version: '21'
           distribution: 'temurin'
-
       - name: Setup Gradle
         uses: gradle/actions/setup-gradle@v4

Large diffs are not rendered by default. Showing the first 50 of 151 lines. Show full diff