rename, add concurrency

This commit is contained in:
Jason2866 2022-01-18 14:42:26 +01:00 committed by GitHub
parent d7142fb4f3
commit 76e0616d48
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 1 deletions

View File

@ -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