forked from jenkinsci/sonic-ci-helper-plugin
-
Notifications
You must be signed in to change notification settings - Fork 13
40 lines (36 loc) · 979 Bytes
/
release.yml
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
name: release to github
on:
push:
tags:
- "sonic*"
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- name: 'Get Previous tag'
id: previoustag
uses: "WyriHaximus/github-action-get-previous-tag@v1"
- name: Set up JDK 17
uses: actions/setup-java@v2
with:
java-version: '17'
distribution: 'temurin'
cache: maven
- uses: softprops/action-gh-release@v1
with:
draft: false
generate_release_notes: true
- name: package
run: mvn hpi:hpi
- name: Upload To Github Release
uses: xresloader/[email protected]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
file: target/sonic-ci-helper.hpi
tag_name: ${{ steps.previoustag.outputs.tag }}
update_latest_release: true
draft: false