Skip to content

Commit 22a77e0

Browse files
author
Giorgia Amici
committed
AIRSHIP-3913 move to GHA
1 parent 23f228d commit 22a77e0

2 files changed

Lines changed: 28 additions & 0 deletions

File tree

.github/rvu/labels.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
service.rvu.co.uk/brand: airship

.github/workflows/push.yaml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
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+
with:
20+
images: quay.io/uswitch/node-problem-detector
21+
tags: type=sha,prefix=,format=long
22+
- uses: docker/build-push-action@v6
23+
with:
24+
context: .
25+
labels: ${{ steps.meta.outputs.labels }}
26+
push: true
27+
tags: ${{ steps.meta.outputs.tags }}

0 commit comments

Comments
 (0)