Skip to content

Remove unused code in createRedisClient function #11

Remove unused code in createRedisClient function

Remove unused code in createRedisClient function #11

Workflow file for this run

name: Docker Image CI
on:
push:
branches:
- main
pull_request:
branches:
- main
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: 1.22
- name: Log in to GitHub Container Registry
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build Docker image
run: |
docker build -t ghcr.io/digital39999/analytics-engine:latest .
- name: Push Docker image to GitHub Container Registry
run: |
docker push ghcr.io/digital39999/analytics-engine:latest