Skip to content

feat(ratelimit): Add annotation-based rate limiting with Redis ZSET t… #28

feat(ratelimit): Add annotation-based rate limiting with Redis ZSET t…

feat(ratelimit): Add annotation-based rate limiting with Redis ZSET t… #28

Workflow file for this run

name: Build and Push Docker Image
on:
push:
tags:
- "v*"
jobs:
build-and-push:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Login to GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Build and Push Docker Image
run: |
VERSION=${GITHUB_REF_NAME#v}
IMAGE=ghcr.io/${{ github.repository }}:$VERSION
docker build -t $IMAGE .
docker push $IMAGE