-
Notifications
You must be signed in to change notification settings - Fork 2
62 lines (54 loc) · 1.45 KB
/
build.yaml
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
name: Build
on:
push:
pull_request:
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: gradle/gradle-build-action@v2
- uses: actions/setup-java@v3
with:
java-version: 17
distribution: temurin
- run: ./gradlew clean build
- uses: actions/upload-artifact@v3
with:
name: intellij-actions-tree
if-no-files-found: error
path: build/distributions/intellij-actions-tree-*.zip
prerelease:
needs: [build]
permissions:
contents: write
runs-on: ubuntu-latest
if: github.ref == 'refs/heads/main'
concurrency:
group: prerelease
cancel-in-progress: true
steps:
- uses: actions/download-artifact@v3
- uses: marvinpinto/action-automatic-releases@v1.2.1
with:
repo_token: "${{ secrets.GITHUB_TOKEN }}"
automatic_release_tag: prerelease
prerelease: true
title: HEAD
files: |
intellij-actions-tree/*
release:
needs: [build]
permissions:
contents: write
runs-on: ubuntu-latest
if: startsWith(github.event.ref, 'refs/tags/v')
steps:
- uses: actions/download-artifact@v3
- uses: marvinpinto/action-automatic-releases@v1.2.1
with:
repo_token: "${{ secrets.GITHUB_TOKEN }}"
prerelease: false
files: |
intellij-actions-tree/*