18 lines
359 B
YAML
18 lines
359 B
YAML
name: Publish Snapshot
|
|
|
|
on:
|
|
push:
|
|
branches: [ master ]
|
|
tags-ignore:
|
|
- 'v*'
|
|
|
|
jobs:
|
|
dev-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
|