forked from ZekerZhayard/ForgeWrapper
-
-
Notifications
You must be signed in to change notification settings - Fork 5
60 lines (57 loc) · 1.58 KB
/
Copy pathpublication.yml
File metadata and controls
60 lines (57 loc) · 1.58 KB
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
name: Publication
on:
push:
tags:
- "*"
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up JDK
uses: actions/setup-java@v4
with:
distribution: "temurin"
java-version: "8.0.312"
architecture: x64
- name: Build with Gradle
env:
IS_PUBLICATION: true
run: |
git clone -b maven https://github.com/ZekerZhayard/ForgeWrapper.git ./build/maven
rm -rf ./build/maven/.git/*
chmod +x ./gradlew
./gradlew publish -iS
- uses: actions/upload-artifact@v4
with:
name: Package
path: build/libs
- name: Get tag version
id: get_version
uses: olegtarasov/get-tag@v2.1
- uses: actions/upload-artifact@v4
with:
name: Package
path: build/libs
- name: Create Release
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ steps.get_version.outputs.tag }}
release_name: ${{ steps.get_version.outputs.tag }}
body: ""
draft: false
prerelease: false
- name: Upload release binaries
uses: alexellis/upload-assets@0.2.2
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
asset_paths: '["./build/libs/*"]'
- name: Upload to Maven
uses: JamesIves/github-pages-deploy-action@4.1.4
with:
branch: maven
folder: build/maven