Skip to content

Commit

Permalink
Add ghcr build daemon
Browse files Browse the repository at this point in the history
  • Loading branch information
josephdrichard committed Oct 11, 2023
1 parent c967f92 commit 635aa75
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/build-daemon-image.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Deploy Daemon Images to GHCR
env:
DOTNET_VERSION: '6.0.x'
on:
push:
branches:
- master
workflow_dispatch:
jobs:
push-store-image:
runs-on: ubuntu-latest
defaults:
run:
working-directory: '.'
steps:
- name: 'Checkout GitHub Action'
uses: actions/checkout@main

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

- name: 'Build Daemon Image'
run: |
make daemon-image
make daemon-push

0 comments on commit 635aa75

Please sign in to comment.