Skip to content

Commit

Permalink
feat: push RP docker image to registry (#199)
Browse files Browse the repository at this point in the history
* feat: push RP docker image to registry

* fix: uncomment branch/tags
  • Loading branch information
walkah authored Jun 26, 2024
1 parent 4b70d29 commit 494584d
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions .github/workflows/release_docker.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: Publish Docker Image

on:
push:
branches:
- "main"
tags:
- "v*"

jobs:
docker:
name: Push Docker image
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Login to the Github Container Registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Docker Metadata
id: meta
uses: docker/metadata-action@v5
with:
images: ghcr.io/Lilypad-Tech/resource-provider
- name: Build and push Docker image
uses: docker/build-push-action@v6
with:
context: .
file: ./docker/resource-provider/Dockerfile
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}

0 comments on commit 494584d

Please sign in to comment.