Skip to content

Bump google.golang.org/grpc from 1.64.0 to 1.64.1 #27

Bump google.golang.org/grpc from 1.64.0 to 1.64.1

Bump google.golang.org/grpc from 1.64.0 to 1.64.1 #27

name: Test and Publish
on:
push:
jobs:
test-app:
name: Test App
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Run tests
run: docker-compose -f docker-compose.test.yml run --rm test ./run-tests.sh
build-and-publish:
name: Build and Publish
needs: test-app
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Log in to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@v5
with:
images: ${{ vars.DOCKER_ORG }}/auth-proxy
- name: Build and push Docker image
uses: docker/build-push-action@v5
with:
context: .
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}