Skip to content

Commit

Permalink
fix(ci): don't run snap workflows in parallel
Browse files Browse the repository at this point in the history
  • Loading branch information
cjdcordeiro committed Oct 13, 2023
1 parent 068a81d commit 6666d50
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/snap.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,11 @@ on:
release:
types: [published]

# We don't want this workflow to have multiple runs in parallel because
# what could happen is that a slow-running and older execution will upload
# an older snap to `edge`, after the newer and latest snap has already been released.
concurrency: ${{ github.workflow }}

env:
SNAP_NAME: pebble
DEFAULT_TRACK: latest
Expand Down

0 comments on commit 6666d50

Please sign in to comment.