Skip to content

Merge pull request #22 from Axway/APIGOV-26149 #1

Merge pull request #22 from Axway/APIGOV-26149

Merge pull request #22 from Axway/APIGOV-26149 #1

name: Kong Discovery Agent Docker
on:
push:
tags:
- v*.*.*
jobs:
build:
env:
GOFLAGS: "-mod=mod"
IMAGE_NAME: kong_discovery_agent
ORG_NAME: Axway
VERSION: ${{ github.ref_name }}
COMMIT_ID: ${{ github.sha }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Log in to the Container registry
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@v4
with:
flavor: latest=false
images: ghcr.io/${{ env.ORG_NAME }}/${{ env.IMAGE_NAME }}
- name: Build and push Docker image
uses: docker/build-push-action@v3
with:
context: .
file: build/discovery.Dockerfile
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}