We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b513d66 commit 2502829Copy full SHA for 2502829
.github/workflows/buildLinux_arm.yml
@@ -0,0 +1,28 @@
1
+name: Build Linux x86_64
2
+on:
3
+ workflow_dispatch:
4
+
5
+jobs:
6
+ build:
7
+ runs-on: ubuntu-22.04-arm
8
+ steps:
9
+ - name: Checkout code
10
+ uses: actions/checkout@v3
11
12
+ - name: Configure JDK
13
+ uses: actions/setup-java@v1
14
+ with:
15
+ java-version: 17
16
17
+ - name: Install libcurl
18
+ run: |
19
+ sudo apt-get update
20
+ sudo apt-get install libcurl3-dev
21
22
+ - name: Run build
23
+ run: ./gradlew buildLambdaRelease --stacktrace
24
25
+ - name: Upload artifacts
26
+ uses: actions/upload-artifact@v4
27
28
+ path: sample/build/lambda/release/sample.zip
build.gradle.kts
@@ -8,5 +8,5 @@ plugins {
allprojects {
group = "io.github.trueangle"
- version = "0.0.4"
+ version = "0.0.5"
}
0 commit comments