Skip to content
This repository was archived by the owner on Apr 11, 2025. It is now read-only.

Create github-container-registry.yml #1

Create github-container-registry.yml

Create github-container-registry.yml #1

name: Deploy Images to GHCR
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/marknefedov/ollama-openrouter-proxy:latest
docker push ghcr.io/marknefedov/ollama-openrouter-proxy:latest