Skip to content

Commit 2502829

Browse files
committed
Bump version, add workflow for linux arm
1 parent b513d66 commit 2502829

File tree

2 files changed

+29
-1
lines changed

2 files changed

+29
-1
lines changed

.github/workflows/buildLinux_arm.yml

+28
Original file line numberDiff line numberDiff line change
@@ -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+
with:
28+
path: sample/build/lambda/release/sample.zip

build.gradle.kts

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,5 @@ plugins {
88

99
allprojects {
1010
group = "io.github.trueangle"
11-
version = "0.0.4"
11+
version = "0.0.5"
1212
}

0 commit comments

Comments
 (0)