-
Notifications
You must be signed in to change notification settings - Fork 312
Expand file tree
/
Copy pathAuto_release
More file actions
36 lines (32 loc) · 896 Bytes
/
Auto_release
File metadata and controls
36 lines (32 loc) · 896 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
30
31
32
33
34
35
36
name: Auto Release on Commit
on:
push:
branches: [ main, master ]
jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Java
uses: actions/setup-java@v4
with:
java-version: '21'
distribution: 'temurin'
- name: Build mod
run: |
./gradlew build
- name: Create Release
uses: softprops/action-gh-release@v2
if: github.event_name != 'pull_request'
with:
tag_name: ${{ github.sha }}
name: VulkanMod-${{ github.sha_short }}
body: |
Auto-release from commit ${{ github.sha }}
- Renderer recursion fix
- UploadManager indirect sync
- VTextureSelector NULL fix
- SpriteUpdateUtil timeout
files: build/libs/*.jar
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}