Skip to content

update readme

update readme #9

Workflow file for this run

name: CI
on:
push:
branches: [apolo]
tags: ["v*"]
pull_request:
branches: [apolo]
jobs:
release:
name: Release image
runs-on: ubuntu-latest
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v')
steps:
- name: Checkout commit
uses: actions/checkout@v4
- name: Login to ghcr.io
uses: docker/login-action@v3.1.0
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ github.token }}
- name: Build Docker image
run: make build-image
- name: Push image
run: |
export IMAGE_TAG=${GITHUB_REF#refs/tags/v}
make push-image
export IMAGE_TAG=latest
make push-image
export IMAGE_TAG=$(cat version.txt)
make push-image