mirror of https://github.com/arendst/Tasmota.git
rename, add concurrency
This commit is contained in:
parent
d7142fb4f3
commit
76e0616d48
|
@ -1,4 +1,4 @@
|
||||||
name: Build_firmware_development_cache
|
name: Build_development
|
||||||
|
|
||||||
on:
|
on:
|
||||||
workflow_dispatch: # Manually start a workflow
|
workflow_dispatch: # Manually start a workflow
|
||||||
|
@ -8,6 +8,11 @@ on:
|
||||||
- '.github/**' # Ignore changes towards the .github directory
|
- '.github/**' # Ignore changes towards the .github directory
|
||||||
- '**.md' # Do no build if *.md files changes
|
- '**.md' # Do no build if *.md files changes
|
||||||
|
|
||||||
|
# Ensures that only one deploy task per branch/environment will run at a time.
|
||||||
|
concurrency:
|
||||||
|
group: environment-${{ github.ref }}
|
||||||
|
cancel-in-progress: true
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
base-images:
|
base-images:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
Loading…
Reference in New Issue