Skip to content

Commit

Permalink
Provide container images
Browse files Browse the repository at this point in the history
  • Loading branch information
0x2b3bfa0 authored and jazzido committed Apr 10, 2024
1 parent 92e665d commit 20a69b7
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
on:
release:
types: [published]
permissions:
contents: read
packages: write
jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ github.token }}
- uses: docker/build-push-action@v4
with:
push: true
tags: |
ghcr.io/${{ github.repository }}:${{ github.ref_name }}
ghcr.io/${{ github.repository }}:latest

0 comments on commit 20a69b7

Please sign in to comment.