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

Update readme.md

Update readme.md #4

name: Deploy Images to GHCR
on:
push:
branches:
- main
workflow_dispatch:
jobs:
push-image:
runs-on: ubuntu-latest
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