Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
M
Mirai
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Packages
Packages
List
Container Registry
Analytics
Analytics
CI / CD
Code Review
Insights
Issues
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
MyCard
Mirai
Commits
ccf205df
Commit
ccf205df
authored
Mar 06, 2020
by
Him188
Committed by
GitHub
Mar 06, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update main2.yml
parent
83159356
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
26 additions
and
19 deletions
+26
-19
.github/workflows/main2.yml
.github/workflows/main2.yml
+26
-19
No files found.
.github/workflows/main2.yml
View file @
ccf205df
...
@@ -5,29 +5,36 @@ name: CI
...
@@ -5,29 +5,36 @@ name: CI
# Controls when the action will run. Triggers the workflow on push or pull request
# Controls when the action will run. Triggers the workflow on push or pull request
# events but only for the master branch
# events but only for the master branch
on
:
on
:
push
:
release
:
branches
:
[
master
]
types
:
pull_request
:
-
created
branches
:
[
master
]
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs
:
jobs
:
# This workflow contains a single job called "build"
# This workflow contains a single job called "build"
build
:
build
:
# The type of runner that the job will run on
runs-on
:
ubuntu-latest
runs-on
:
ubuntu-latest
# Steps represent a sequence of tasks that will be executed as part of the job
steps
:
steps
:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
-
uses
:
actions/checkout@v2
-
uses
:
actions/checkout@v2
-
name
:
Set up JDK
1.8
uses
:
actions/setup-java@v1
# Runs a single command using the runners shell
with
:
-
name
:
Run a one-line script
java-version
:
1.8
run
:
echo Hello, world!
-
name
:
Grant execute permission for gradlew
run
:
chmod +x gradlew
# Runs a set of commands using the runners shell
-
name
:
Build with Gradle and shadowJar
-
name
:
Run a multi-line script
run
:
./gradlew :mirai-core:shadowJar :mirai-core-qqandroid:shadowJar
run
:
|
-
name
:
Upload artifact
echo Add other actions to build,
uses
:
actions/upload-artifact@v1.0.0
echo test, and deploy your project.
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"
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment