Skip to content

Commit af6390d

Browse files
committed
Update releaser
Signed-off-by: Tyler Auerbeck <[email protected]>
1 parent 34fd748 commit af6390d

File tree

2 files changed

+32
-1
lines changed

2 files changed

+32
-1
lines changed

.github/workflows/release.yaml

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,3 +17,35 @@ jobs:
1717
charts_url: "https://auerbecklabs.github.io/charts"
1818
repository: "charts"
1919
branch: main
20+
21+
image-build:
22+
runs-on: ubuntu-latest
23+
permissions:
24+
packages: write
25+
26+
steps:
27+
- name: Checkout
28+
uses: actions/checkout@v3
29+
30+
- name: Registry Login
31+
uses: docker/login-action@v2
32+
with:
33+
registry: ghcr.io
34+
username: ${{ github.actor }}
35+
password: ${{ secrets.GITHUB_TOKEN }}
36+
37+
- name: Docker Metadata
38+
id: metadata
39+
uses: docker/metadata-action@v4
40+
with:
41+
images: |
42+
ghcr.io/${{ github.repository }}
43+
tags: |
44+
type=ref,event=tag
45+
46+
- name: Build+Push
47+
uses: docker/build-push-action@v3
48+
with:
49+
context: .
50+
push: true
51+
tags: ${{ steps.metadata.outputs.tags }}

README.md

Lines changed: 0 additions & 1 deletion
This file was deleted.

0 commit comments

Comments
 (0)