generated from aura-ascend/template-service
Initial commit
This commit is contained in:
15
.gitea/workflows/build.yaml
Normal file
15
.gitea/workflows/build.yaml
Normal file
@@ -0,0 +1,15 @@
|
||||
name: Gradle Build on PR
|
||||
|
||||
on:
|
||||
workflow_dispatch:
|
||||
pull_request:
|
||||
branches: [master]
|
||||
types: [opened, synchronize, reopened]
|
||||
|
||||
jobs:
|
||||
call-gradle-build:
|
||||
uses: aura-ascend/common-workflows/.gitea/workflows/gradle-build.yaml@master
|
||||
with:
|
||||
JAVA_VERSION: 17
|
||||
BUILD_OPTION: -x testIntegration
|
||||
secrets: inherit
|
||||
17
.gitea/workflows/publish-snapshot.yaml
Normal file
17
.gitea/workflows/publish-snapshot.yaml
Normal file
@@ -0,0 +1,17 @@
|
||||
name: Publish Snapshot
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [ master ]
|
||||
tags-ignore:
|
||||
- 'v*'
|
||||
|
||||
jobs:
|
||||
call-publish:
|
||||
if: |
|
||||
!startsWith(github.event.head_commit.message, '[RELEASE]')
|
||||
uses: aura-ascend/common-workflows/.gitea/workflows/publish-container.yaml@master
|
||||
with:
|
||||
JAVA_VERSION: 17
|
||||
BRANCH_REFERENCE: master
|
||||
secrets: inherit
|
||||
12
.gitea/workflows/publish-version.yaml
Normal file
12
.gitea/workflows/publish-version.yaml
Normal file
@@ -0,0 +1,12 @@
|
||||
name: Publish Gradle Plugin
|
||||
|
||||
on:
|
||||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
call-publish-version:
|
||||
uses: aura-ascend/common-workflows/.gitea/workflows/publish-container.yaml@master
|
||||
with:
|
||||
JAVA_VERSION: 17
|
||||
BRANCH_REFERENCE: ${{ github.ref_name }}
|
||||
secrets: inherit
|
||||
13
.gitea/workflows/release.yaml
Normal file
13
.gitea/workflows/release.yaml
Normal file
@@ -0,0 +1,13 @@
|
||||
name: Release Gradle Plugin
|
||||
|
||||
on:
|
||||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
call-release:
|
||||
if: github.ref_name == 'master'
|
||||
uses: aura-ascend/common-workflows/.gitea/workflows/release.yaml@master
|
||||
with:
|
||||
JAVA_VERSION: 17
|
||||
RELEASE_TYPE: service
|
||||
secrets: inherit
|
||||
Reference in New Issue
Block a user