-
Notifications
You must be signed in to change notification settings - Fork 0
29 lines (29 loc) · 761 Bytes
/
build.yml
File metadata and controls
29 lines (29 loc) · 761 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
name: Build application
on:
push
jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Set up Graal JDK
uses: graalvm/setup-graalvm@v1
with:
distribution: 'graalvm'
java-version: '25'
github-token: ${{ secrets.GITHUB_TOKEN }}
cache: 'maven'
- name: Build image
run: mvn -Pnative package
- name: verify executable
id: verify
run: |
./certs.sh
./.github/scripts/verifyExecutable.sh
- name: check log if error
if: ${{ failure() && steps.verify.conclusion == 'failure' }}
run: cat intercept.log
- uses: actions/upload-artifact@v4
with:
path: target/https-intercept
if-no-files-found: error