-
Notifications
You must be signed in to change notification settings - Fork 51
37 lines (29 loc) · 919 Bytes
/
main.yml
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
30
31
32
33
34
35
36
37
name: CI
on:
push:
branches:
- actions # Trigger this workflow on pushes to the "actions" branch
jobs:
build_and_release:
runs-on: ubuntu-20.04
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Java
uses: actions/setup-java@v3
with:
java-version: '8' # Use the appropriate JDK version
distribution: 'adopt' # Set the Java distribution
- name: Install Ant
run: sudo apt-get install -y ant
- name: Build the project
run: ant -Dskip.chkpii=y # Run the specified Ant command
- name: List files in dist directory
run: ls -l dist # Debugging step to list files
- name: Create GitHub Release
uses: softprops/action-gh-release@v2
with:
tag_name: myTag
files: "dist/*.zip"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}