-
Notifications
You must be signed in to change notification settings - Fork 11
47 lines (41 loc) · 1.43 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
46
47
name: Release or Update Cyber IO
on: workflow_dispatch
jobs:
build:
runs-on: ubuntu-latest
env:
GH_REPO: ${{ github.repository }}
steps:
- uses: actions/checkout@v4
- name: Set Android SDK tools
run: echo "$ANDROID_HOME/build-tools/30.0.3" >> $GITHUB_PATH
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'temurin'
cache: 'gradle'
- name: Build Cyber-IO
run: |
chmod +x gradlew
./gradlew :main:deploy
- name: Retrieve meta
id: retrieveMeta
run: |
./gradlew retrieveMeta
- name: Create release
if: ${{ steps.retrieveMeta.outputs.tag_exist == 'false' }}
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
HEADER: ${{ steps.retrieveMeta.outputs.header }}
VERSION: ${{ steps.retrieveMeta.outputs.version }}
run: |
gh release create "$VERSION" --title "$HEADER" --notes-file "Info/ReleaseMessage/$VERSION.md" main/build/tmp/deploy/*.jar
# Since the tag exists, update the release instead
- name: Update release file
if: ${{ steps.retrieveMeta.outputs.tag_exist == 'true' }}
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
VERSION: ${{ steps.retrieveMeta.outputs.version }}
run: |
gh release upload "$VERSION" main/build/tmp/deploy/*.jar --clobber