[DEV] Do not release with doc updates
This commit is contained in:
parent
1cb70e4520
commit
8eca524292
2 changed files with 10 additions and 2 deletions
6
.github/workflows/package-ubuntu.yaml
vendored
6
.github/workflows/package-ubuntu.yaml
vendored
|
|
@ -100,7 +100,11 @@ jobs:
|
||||||
permissions:
|
permissions:
|
||||||
contents: read
|
contents: read
|
||||||
|
|
||||||
if: ${{ github.ref == 'refs/heads/master' && !contains(github.event.head_commit.message, '[DEV]') }}
|
if: ${{
|
||||||
|
github.ref == 'refs/heads/master'
|
||||||
|
&& !contains(github.event.head_commit.message, '[DEV]')
|
||||||
|
&& !contains(github.event.head_commit.message, '[DOCS]')
|
||||||
|
}}
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v3
|
||||||
|
|
||||||
|
|
|
||||||
6
.github/workflows/release.yaml
vendored
6
.github/workflows/release.yaml
vendored
|
|
@ -171,7 +171,11 @@ jobs:
|
||||||
ls -lh /opt/builds
|
ls -lh /opt/builds
|
||||||
|
|
||||||
- name: Create Release
|
- name: Create Release
|
||||||
if: ${{ github.ref == 'refs/heads/master' && !contains(github.event.head_commit.message, '[DEV]') }}
|
if: ${{
|
||||||
|
github.ref == 'refs/heads/master'
|
||||||
|
&& !contains(github.event.head_commit.message, '[DEV]')
|
||||||
|
&& !contains(github.event.head_commit.message, '[DOCS]')
|
||||||
|
}}
|
||||||
id: create_release
|
id: create_release
|
||||||
uses: softprops/action-gh-release@v1
|
uses: softprops/action-gh-release@v1
|
||||||
with:
|
with:
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue