Build and Push Images #145
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: Build and Push Images | |
on: | |
workflow_call: | |
release: | |
types: [published] | |
jobs: | |
docker-hub: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
token: ${{ secrets.botGitHubToken }} | |
- name: Load .env file | |
uses: cardinalby/export-env-action@v2 | |
with: | |
envFile: .env | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v2 | |
- name: Login to DockerHub | |
uses: docker/login-action@v2 | |
with: | |
username: dropletbot | |
password: ${{ secrets.botDockerHubPassword }} | |
- name: Build and push (latest) | |
if: github.ref == 'refs/heads/main' | |
uses: docker/build-push-action@v3 | |
with: | |
platforms: linux/amd64,linux/arm64 | |
context: . | |
push: true | |
build-args: | | |
SERVICE_NAME=mgmt-backend | |
GOLANG_VERSION=${{ env.GOLANG_VERSION }} | |
tags: instill/mgmt-backend:latest | |
cache-from: type=registry,ref=instill/mgmt-backend:buildcache | |
cache-to: type=registry,ref=instill/mgmt-backend:buildcache,mode=max | |
- name: Set Versions | |
if: github.event_name == 'release' | |
uses: actions/github-script@v6 | |
id: set_version | |
with: | |
script: | | |
const tag = '${{ github.ref_name }}' | |
const no_v_tag = tag.replace('v', '') | |
core.setOutput('tag', tag) | |
core.setOutput('no_v_tag', no_v_tag) | |
- name: Build and push (release) | |
if: github.event_name == 'release' | |
uses: docker/build-push-action@v3 | |
with: | |
platforms: linux/amd64,linux/arm64 | |
context: . | |
push: true | |
build-args: | | |
SERVICE_NAME=mgmt-backend | |
GOLANG_VERSION=${{ env.GOLANG_VERSION }} | |
tags: instill/mgmt-backend:${{steps.set_version.outputs.no_v_tag}} | |
cache-from: type=registry,ref=instill/mgmt-backend:buildcache | |
cache-to: type=registry,ref=instill/mgmt-backend:buildcache,mode=max |