Don't allow concurrent publish actions.
If two commits gets pushed in quick succession, and the first takes much longer to publish (for some reason), said build can be considered "latest". This just happened and it broke the servers.
This commit is contained in:
parent
97e47178d7
commit
b42412903b
|
|
@ -1,5 +1,8 @@
|
|||
name: Publish
|
||||
|
||||
concurrency:
|
||||
group: publish
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [ master ]
|
||||
|
|
|
|||
Loading…
Reference in New Issue