mirror of
https://github.com/ManiMatter/decluttarr.git
synced 2026-04-20 00:54:16 +02:00
Create push-main-image-ghcr.yml
First attempt to automatically create docker image
This commit is contained in:
33
.github/workflows/push-main-image-ghcr.yml
vendored
Normal file
33
.github/workflows/push-main-image-ghcr.yml
vendored
Normal file
@@ -0,0 +1,33 @@
|
||||
name: Deploy Images to GHCR
|
||||
|
||||
env:
|
||||
DOTNET_VERSION: '6.0.x'
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
push-store-image:
|
||||
runs-on: ubuntu-latest
|
||||
defaults:
|
||||
run:
|
||||
working-directory: './Store'
|
||||
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 Inventory Image'
|
||||
run: |
|
||||
# docker build . --tag ghcr.io/ManiMatter/store:latest
|
||||
docker build docker/Dockerfile --tag ghcr.io/ManiMatter/store:latest
|
||||
docker push ghcr.io/ManiMatter/store:latest
|
||||
Reference in New Issue
Block a user