Skip to content

Commit

Permalink
Update releaser
Browse files Browse the repository at this point in the history
Signed-off-by: Tyler Auerbeck <tylerauerbeck@users.noreply.github.com>
  • Loading branch information
tylerauerbeck committed Jan 20, 2023
1 parent 34fd748 commit af6390d
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 1 deletion.
32 changes: 32 additions & 0 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,3 +17,35 @@ jobs:
charts_url: "https://auerbecklabs.github.io/charts"
repository: "charts"
branch: main

image-build:
runs-on: ubuntu-latest
permissions:
packages: write

steps:
- name: Checkout
uses: actions/checkout@v3

- name: Registry Login
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Docker Metadata
id: metadata
uses: docker/metadata-action@v4
with:
images: |
ghcr.io/${{ github.repository }}
tags: |
type=ref,event=tag
- name: Build+Push
uses: docker/build-push-action@v3
with:
context: .
push: true
tags: ${{ steps.metadata.outputs.tags }}
1 change: 0 additions & 1 deletion README.md

This file was deleted.

0 comments on commit af6390d

Please sign in to comment.