Skip to content

v0.3.0-alpha

v0.3.0-alpha #3

Workflow file for this run

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=artifact-backend
GOLANG_VERSION=${{ env.GOLANG_VERSION }}
tags: instill/artifact-backend:latest
cache-from: type=registry,ref=instill/artifact-backend:buildcache
cache-to: type=registry,ref=instill/artifact-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=artifact-backend
GOLANG_VERSION=${{ env.GOLANG_VERSION }}
tags: instill/artifact-backend:${{steps.set_version.outputs.no_v_tag}}
cache-from: type=registry,ref=instill/artifact-backend:buildcache
cache-to: type=registry,ref=instill/artifact-backend:buildcache,mode=max