forked from cantaloupe-project/cantaloupe
-
Notifications
You must be signed in to change notification settings - Fork 0
45 lines (45 loc) · 1.45 KB
/
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
41
42
43
44
45
on:
push:
tags:
- 'v*'
name: Upload Release Asset
jobs:
build:
name: Upload Release Asset
runs-on: ubuntu-latest
steps:
- uses: actions/setup-java@v1
with:
java-version: '11'
java-package: jdk
architecture: x64
- name: Checkout Code
uses: actions/checkout@v2
- name: Build Project
# we assume that the tests for this tag have already passed
# (otherwise the tag wouldn't have been pushed)
run: mvn clean package -DskipTests
- name: Create Release
id: create_release
uses: actions/[email protected]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ github.ref }}
release_name: ${{ github.ref }}
draft: false
prerelease: false
- id: getpathname
run: echo "::set-output name=file::$(ls target/cantaloupe-*.zip)"
- id: getbasename
run: echo "::set-output name=file::$(basename target/cantaloupe-*.zip)"
- name: Upload Release Asset
id: upload-release-asset
uses: actions/[email protected]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: ./${{ steps.getpathname.outputs.file }}
asset_name: ${{ steps.getbasename.outputs.file }}
asset_content_type: application/zip