File tree Expand file tree Collapse file tree 2 files changed +29
-1
lines changed Expand file tree Collapse file tree 2 files changed +29
-1
lines changed Original file line number Diff line number Diff line change
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
+ with :
28
+ path : sample/build/lambda/release/sample.zip
Original file line number Diff line number Diff line change @@ -8,5 +8,5 @@ plugins {
8
8
9
9
allprojects {
10
10
group = " io.github.trueangle"
11
- version = " 0.0.4 "
11
+ version = " 0.0.5 "
12
12
}
You can’t perform that action at this time.
0 commit comments