Skip to content

Commit ff2abbd

Browse files
authored
Build and push the valkey image (#13)
Connected to RUNT-11
1 parent 3ae8eeb commit ff2abbd

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

.github/workflows/ci.yaml

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
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

0 commit comments

Comments
 (0)