Skip to content

Commit 4de1158

Browse files
committed
Merge remote-tracking branch 'origin/master'
2 parents 60797f9 + fc028cb commit 4de1158

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed

.github/workflows/release.yml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
# This is a basic workflow to help you get started with Actions
2+
3+
name: Release artifact
4+
5+
# Controls when the workflow will run
6+
on: release
7+
8+
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
9+
jobs:
10+
# This workflow contains a single job called "build"
11+
build:
12+
# The type of runner that the job will run on
13+
runs-on: ubuntu-latest
14+
15+
# Steps represent a sequence of tasks that will be executed as part of the job
16+
steps:
17+
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
18+
- uses: actions/checkout@v2
19+
20+
# Runs a single command using the runners shell
21+
- name: Maven Build
22+
run: mvn package -Dmdep.skip
23+
- name: Upload to release
24+
uses: JasonEtco/upload-to-release@master
25+
with:
26+
args: target/AdiAuth*.jar
27+
env:
28+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)