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 b2b766c commit 44dd00fCopy full SHA for 44dd00f
.github/CODEOWNERS
@@ -0,0 +1 @@
1
+* @nikolaydubina
.github/workflows/image.yaml
@@ -0,0 +1,28 @@
+name: image
2
+
3
+on: [push]
4
5
+jobs:
6
+ build-and-publish:
7
+ runs-on: ubuntu-latest
8
+ steps:
9
+ - name: code
10
+ uses: actions/checkout@v4
11
12
+ - name: docker
13
+ uses: docker/setup-buildx-action@v3
14
15
+ - name: image metadata
16
+ id: metadata
17
+ uses: docker/metadata-action@v5
18
+ with:
19
+ images: ghcr.io/ndx-technologies/redis-prometheus-exporter-info
20
21
+ - name: build and publish
22
+ uses: docker/build-push-action@v6
23
24
+ context: .
25
+ file: Dockerfile
26
+ tags: ${{ steps.metadata.outputs.tags }}
27
+ labels: ${{ steps.metadata.outputs.labels }}
28
+ push: true
0 commit comments