Skip to content

Commit

Permalink
update build workflow to use reuseable workflow (#90)
Browse files Browse the repository at this point in the history
* update build workflow to use reuseable workflow
  • Loading branch information
DeeAjayi authored Oct 22, 2024
1 parent 35010ef commit cb12545
Showing 1 changed file with 10 additions and 35 deletions.
45 changes: 10 additions & 35 deletions .github/workflows/release-to-jfrog.yaml
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
name: Push image to JFrog Artifactory

on:
# pull_request:
# types: [ opened, synchronize, reopened ]
push:
branches:
- 'main'
Expand All @@ -11,38 +9,15 @@ permissions:
id-token: write
contents: read

env:
IMAGE_TAG: ${{ github.sha }}
ARTIFACTORY_REGISTRY: ${{ vars.TRUEFOUNDRY_ARTIFACTORY_REGISTRY_URL }}
ARTIFACTORY_USERNAME: ${{ secrets.TRUEFOUNDRY_ARTIFACTORY_PUBLIC_USERNAME }}
ARTIFACTORY_PASSWORD: ${{ secrets.TRUEFOUNDRY_ARTIFACTORY_PUBLIC_PASSWORD }}
ARTIFACTORY_REPOSITORY_URL: ${{ vars.TRUEFOUNDRY_ARTIFACTORY_PUBLIC_REPOSITORY }}/async_processor

jobs:
build:
name: Build Image
runs-on: ubuntu-latest
steps:
- name: Checkoutout code
uses: actions/checkout@v4

- name: Log in to JFrog Artifactory
uses: docker/login-action@v3
with:
username: ${{ env.ARTIFACTORY_USERNAME }}
password: ${{ env.ARTIFACTORY_PASSWORD }}
registry: ${{ env.ARTIFACTORY_REGISTRY }}

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3

- name: Build and push image
uses: docker/build-push-action@v6
with:
context: .
push: true
provenance: false
platforms: linux/amd64,linux/arm64
tags: ${{ env.ARTIFACTORY_REPOSITORY_URL }}:${{ env.IMAGE_TAG }}
cache-from: type=registry,ref=${{ env.ARTIFACTORY_REPOSITORY_URL }}:buildcache
cache-to: mode=max,image-manifest=true,type=registry,ref=${{ env.ARTIFACTORY_REPOSITORY_URL }}:buildcache
name: Build
uses: truefoundry/workflows/.github/workflows/build.yml@main
with:
image_tag: ${{ github.sha }}
image_artifact_name: async_processor
artifactory_registry_url: ${{ vars.TRUEFOUNDRY_ARTIFACTORY_REGISTRY_URL }}
artifactory_repository_url: ${{ vars.TRUEFOUNDRY_ARTIFACTORY_PUBLIC_REPOSITORY }}
secrets:
artifactory_username: ${{ secrets.TRUEFOUNDRY_ARTIFACTORY_PUBLIC_USERNAME }}
artifactory_password: ${{ secrets.TRUEFOUNDRY_ARTIFACTORY_PUBLIC_PASSWORD }}

0 comments on commit cb12545

Please sign in to comment.