Skip to content

APIGOV-27565 - remove artifact upload #1

APIGOV-27565 - remove artifact upload

APIGOV-27565 - remove artifact upload #1

name: Discovery Agent Docker
on:
push:
tags:
- "*"
jobs:
testDiscoveryAgent:
uses: ./.github/workflows/run-da-tests.yml
testTraceabilityAgent:
uses: ./.github/workflows/run-ta-tests.yml
buildDiscoveryAgentDocker:
needs: testDiscoveryAgent
env:
GOFLAGS: "-mod=mod"
GOWORK: "off"
IMAGE_NAME: apigee_discovery_agent
ORG_NAME: Axway
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- 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@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@v5
with:
flavor: latest=false
images: ghcr.io/${{ env.ORG_NAME }}/${{ env.IMAGE_NAME }}
- name: Build and push Docker image
uses: docker/build-push-action@v5
with:
context: .
file: discovery/docker/Dockerfile
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
buildtraceabilityAgentDocker:
needs: testTraceabilityAgent
env:
GOFLAGS: "-mod=mod"
GOWORK: "off"
IMAGE_NAME: apigee_traceability_agent
ORG_NAME: Axway
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Create commit_id & version files
working-directory: traceability
run: |
git branch --show-current > commit_id
echo "${{ github.ref_name }}" > version
- name: Log in to the Container registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@v5
with:
flavor: latest=false
images: ghcr.io/${{ env.ORG_NAME }}/${{ env.IMAGE_NAME }}
- name: Build and push Docker image
uses: docker/build-push-action@v5
with:
context: .
file: traceability/docker/Dockerfile
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}