We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0ab183b commit 9e5b70aCopy full SHA for 9e5b70a
.github/workflows/container-maintenance.yml
@@ -5,6 +5,10 @@ on:
5
- cron: '0 2 * * 3' # Runs at 2am on Wednesdays
6
workflow_dispatch: # Enables manual triggering of the workflow
7
8
+# Only run one at a time
9
+concurrency:
10
+ group: ${{ github.workflow }}
11
+
12
jobs:
13
cleanup-container-tags:
14
runs-on: ubuntu-latest
@@ -21,6 +25,8 @@ jobs:
21
25
22
26
push-container-tags:
23
27
28
+ needs: cleanup-container-tags
29
+ if: always() # Run after cleanup even if it fails
24
30
steps:
31
- name: Log into ghcr.io
32
uses: redhat-actions/podman-login@v1
0 commit comments