Skip to content

Commit

Permalink
Create docker-image-m-drive-client.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
trueai-org authored May 31, 2024
1 parent f09f1f5 commit a49a7d0
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions .github/workflows/docker-image-m-drive-client.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: Client Docker Image CI

on:
release:
types: [published]

jobs:
push_to_registry:
name: Push Docker image to GitHub Container Registry
runs-on: ubuntu-latest
steps:
- name: Check out the repo
uses: actions/checkout@v4

- name: Log in to GitHub Container Registry
uses: docker/[email protected]
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@v1
with:
images: ghcr.io/trueaiorg/mdrive

- name: Build and push Docker image
uses: docker/build-push-action@v2
with:
context: .
file: ./src/MDriveSync.Client.API/Dockerfile
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}

0 comments on commit a49a7d0

Please sign in to comment.