-
Notifications
You must be signed in to change notification settings - Fork 5
33 lines (31 loc) · 986 Bytes
/
build.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
# This workflow will build a Java project with Gradle
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-gradle
name: Run build and tests
on:
push:
branches:
- '**'
pull_request:
branches: [ release/2.X ]
jobs:
build:
permissions:
checks: write
pull-requests: write
contents: read
environment: CIRelease
runs-on: ubuntu-latest
steps:
- name: Setup
uses: IntershopCommunicationsAG/.github/actions/gradle-plugin-setup@v2
- name: set-env
uses: allenevans/set-env@v4
with:
GITURL: ${{ secrets.GITURL }}
GITUSER: ${{ secrets.GITUSER }}
GITPASSWD: ${{ secrets.GITPASSWD }}
SVNURL: ${{ secrets.SVNURL }}
SVNUSER: ${{ secrets.SVNUSER }}
SVNPASSWD: ${{ secrets.SVNPASSWD }}
- name: Build
uses: IntershopCommunicationsAG/.github/actions/gradle-plugin-build@v2