Skip to content

Fix wrong error message when daily limit is exceeded #7

Fix wrong error message when daily limit is exceeded

Fix wrong error message when daily limit is exceeded #7

name: Publish Docker Image
on:
push:
branches:
- unstable
jobs:
build-and-push:
name: Build & Push
permissions:
packages: write
contents: read
runs-on: ubuntu-latest
steps:
- name: Check out the repository
uses: actions/checkout@v4
- name: Log in to the GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push
uses: docker/build-push-action@v5
with:
context: .
push: true
tags: ghcr.io/returnmoe/rapport_engine:snapshot.${{ github.run_number }}