Skip to content

Commit fe97c11

Browse files
committed
Adding a Release
1 parent 4896af0 commit fe97c11

File tree

1 file changed

+22
-2
lines changed

1 file changed

+22
-2
lines changed

.github/workflows/release.yml

Lines changed: 22 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,24 @@ on:
66
- '*'
77

88
jobs:
9+
linux-arm:
10+
runs-on: ubuntu-24.04-arm
11+
steps:
12+
- name: Checkout
13+
uses: actions/checkout@v1
14+
- uses: actions/setup-java@v3
15+
with:
16+
java-version: '8'
17+
distribution: 'zulu'
18+
- name: Build
19+
run: bash build-linux-arm.sh
20+
- name: Upload math result for job Linux
21+
uses: actions/upload-artifact@v3
22+
with:
23+
name: linux-arm-lib
24+
path: src/main/resources/linux-arm64/*
925
linux:
10-
runs-on: ubuntu-20.04
26+
runs-on: ubuntu-22.04
1127
steps:
1228
- name: Checkout
1329
uses: actions/checkout@v1
@@ -86,7 +102,11 @@ jobs:
86102
with:
87103
name: win-lib
88104
path: src/main/resources/windows-x86_64/
89-
105+
- name: Download math result for job Linux Arm
106+
uses: actions/download-artifact@v3
107+
with:
108+
name: linux-arm-lib
109+
path: src/main/resources/linux-arm64/
90110
- name: Download math result for job Linux
91111
uses: actions/download-artifact@v3
92112
with:

0 commit comments

Comments
 (0)