File tree Expand file tree Collapse file tree 1 file changed +27
-0
lines changed Expand file tree Collapse file tree 1 file changed +27
-0
lines changed Original file line number Diff line number Diff line change
1
+ name : CI
2
+
3
+ on :
4
+ push :
5
+ branches :
6
+ - main
7
+ pull_request :
8
+ workflow_dispatch :
9
+
10
+ # Ensure only one workflow instance runs at a time. For branches other than the
11
+ # default branch, cancel the pending jobs in the group. For the default branch,
12
+ # queue them up. This avoids cancelling jobs that are in the middle of deploying
13
+ # to production.
14
+ concurrency :
15
+ group : ${{ github.workflow }}-${{ github.ref }}
16
+ cancel-in-progress : ${{ github.ref != format('refs/heads/{0}', github.event.repository.default_branch) }}
17
+
18
+ jobs :
19
+ build :
20
+ name : Build
21
+ permissions :
22
+ contents : ' read'
23
+ id-token : ' write'
24
+ uses : replicate/actions/.github/workflows/buildx.yml@main
25
+ with :
26
+ image : valkey
27
+ context : docker-images/valkey
You can’t perform that action at this time.
0 commit comments