mirror of
https://github.com/mamoe/mirai.git
synced 2025-02-02 12:45:09 +08:00
Create shadow-publish.yml
This commit is contained in:
parent
407f3cae3e
commit
e60f02a089
35
.github/workflows/shadow-publish.yml
vendored
Normal file
35
.github/workflows/shadow-publish.yml
vendored
Normal file
@ -0,0 +1,35 @@
|
||||
|
||||
name: ShadowPublish
|
||||
|
||||
on:
|
||||
release:
|
||||
types:
|
||||
- created
|
||||
|
||||
jobs:
|
||||
shadow:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- name: Set up JDK 1.8
|
||||
uses: actions/setup-java@v1
|
||||
with:
|
||||
java-version: 1.8
|
||||
- name: Grant execute permission for gradlew
|
||||
run: chmod +x gradlew
|
||||
- name: Build with Gradle and shadowJar
|
||||
run: ./gradlew :mirai-core:shadowJar :mirai-core-qqandroid:shadowJar
|
||||
- name: Upload artifact
|
||||
uses: actions/upload-artifact@v1.0.0
|
||||
with:
|
||||
# Artifact name
|
||||
name: mirai-core-all
|
||||
# Directory containing files to upload
|
||||
path: mirai-core/build/libs/mirai-core-*-all.jar
|
||||
- name: Upload artifact
|
||||
uses: actions/upload-artifact@v1.0.0
|
||||
with:
|
||||
# Artifact name
|
||||
name: mirai-core-qqandroid-all
|
||||
# Directory containing files to upload
|
||||
path: mirai-core-qqandroid/build/libs/mirai-core-qqandroid-*-all.jar
|
Loading…
Reference in New Issue
Block a user