only:Check branch name
This commit is contained in:
parent
0fbe621b5b
commit
fe1655f01b
|
@ -77,6 +77,11 @@ inputs:
|
||||||
runs:
|
runs:
|
||||||
using: "composite"
|
using: "composite"
|
||||||
steps:
|
steps:
|
||||||
|
- name: Check branch name
|
||||||
|
shell: bash
|
||||||
|
if: ${{ contains(github.ref_name, '.') }}
|
||||||
|
run: echo '::error::Branch names must not contain ".", this breaks firmware autoupdates.' && exit 1
|
||||||
|
|
||||||
- name: Mask Secrets
|
- name: Mask Secrets
|
||||||
shell: bash
|
shell: bash
|
||||||
run: |
|
run: |
|
||||||
|
|
Loading…
Reference in New Issue