Apigov 00000 (#148) #126
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Discovery Agent Docker | |
on: | |
push: | |
tags: | |
- "*" | |
jobs: | |
buildDiscoveryAgentDocker: | |
env: | |
GOFLAGS: "-mod=mod" | |
GOWORK: "off" | |
IMAGE_NAME: apigee_discovery_agent | |
ORG_NAME: Axway | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Create commit_id & version files | |
working-directory: discovery | |
run: | | |
git branch --show-current > commit_id | |
echo "${{ github.ref_name }}" > version | |
- 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: discovery/docker/Dockerfile | |
push: true | |
tags: ${{ steps.meta.outputs.tags }} | |
labels: ${{ steps.meta.outputs.labels }} |