-
Notifications
You must be signed in to change notification settings - Fork 0
61 lines (51 loc) · 1.76 KB
/
build.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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
# name: Build Workflow
# on:
# push:
# branches:
# - main
# jobs:
# build:
# runs-on: windows-latest
# steps:
# - name: Checkout repository
# uses: actions/checkout@v2
# - name: Set up JDK 17
# uses: actions/setup-java@v2
# with:
# distribution: 'adopt'
# java-version: '17'
# - name: Build with Maven
# run: mvn package
# - name: Install Launch4j using Chocolatey
# run: |
# choco install launch4j -y
# - name: Run Launch4j
# run: |
# "C:\Program Files (x86)\Launch4j\launch4j.exe" D:\a\MDCstudentSIMULATOR\MDCstudentSIMULATOR\launch4j.xml
# shell: bash
# - name: Upload EXE artifact
# uses: actions/upload-artifact@v2
# with:
# name: MDCstudentSIMULATOR_executable
# path: target/MDCstudentSIMULATOR.exe
# - name: Create Release
# id: create_release
# uses: actions/create-release@v1
# env:
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# with:
# tag_name: ${{ github.ref_name }}
# release_name: "Release ${{ github.ref_name }}"
# body: "Release created by GitHub Actions"
# draft: false
# prerelease: false
# - name: Upload Release Asset
# id: upload-release-asset
# uses: actions/upload-release-asset@v1
# env:
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# with:
# upload_url: ${{ steps.create_release.outputs.upload_url }}
# asset_path: target/MDCstudentSIMULATOR.exe
# asset_name: MDCstudentSIMULATOR.exe
# asset_content_type: application/octet-stream