microsoft/gctoolkit

Public

mirrored fromhttps://github.com/microsoft/gctoolkitAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
gctoolkit-3.0.4

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

.github/workflows/early_access.yml

31lines · modecode

1name: GCToolKit Pre-release Notes
2
3on:
4 push:
5 branches: [ main ]
6 paths-ignore:
7 - '**.md'
8
9jobs:
10 build:
11 runs-on: ubuntu-latest
12 if: startsWith(github.event.head_commit.message, '[maven-release-plugin]') != true
13
14 steps:
15 - uses: actions/checkout@v2
16
17 - name: Set up JDK 11
18 uses: actions/setup-java@v2
19 with:
20 java-version: 11
21 distribution: 'adopt'
22 cache: 'maven'
23
24 - name: Build with Maven
25 run: ./mvnw -B verify --file pom.xml
26
27 - name: Git-release
28 run: |
29 ./mvnw -B -pl :gctoolkit -Pjreleaser jreleaser:release
30 env:
31 JRELEASER_GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
32