We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 23f228d commit 22a77e0Copy full SHA for 22a77e0
2 files changed
.github/rvu/labels.yaml
@@ -0,0 +1 @@
1
+service.rvu.co.uk/brand: airship
.github/workflows/push.yaml
@@ -0,0 +1,27 @@
+name: push
2
+on: push
3
+permissions:
4
+ contents: read
5
+ id-token: write
6
+jobs:
7
+ build:
8
+ runs-on: ubuntu-latest
9
+ steps:
10
+ - uses: actions/checkout@v4
11
+ - name: Login to Quay.io
12
+ uses: docker/login-action@v3
13
+ with:
14
+ registry: quay.io
15
+ username: ${{ secrets.QUAY_USERNAME }}
16
+ password: ${{ secrets.QUAY_PASSWORD }}
17
+ - id: meta
18
+ uses: docker/metadata-action@v5
19
20
+ images: quay.io/uswitch/node-problem-detector
21
+ tags: type=sha,prefix=,format=long
22
+ - uses: docker/build-push-action@v6
23
24
+ context: .
25
+ labels: ${{ steps.meta.outputs.labels }}
26
+ push: true
27
+ tags: ${{ steps.meta.outputs.tags }}
0 commit comments