Skip to content

fix(docker-build): disable build cache #18

fix(docker-build): disable build cache

fix(docker-build): disable build cache #18

Workflow file for this run

name: Build Docker Image
on:
push:
branches:
- main
tags:
- 'v*'
jobs:
run:
name: Build and publish
runs-on: ubuntu-latest
env:
IMG_NAME: ghcr.io/taskforcesh/bullmq-proxy
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Debug
run: |
echo "github.ref -> {{ github.ref }}"
- name: Docker metadata
id: meta
uses: docker/metadata-action@v5
with:
images: ${{ env.IMG_NAME }}
tags: |
type=ref,event=branch
type=ref,event=pr
type=semver,pattern={{version}}
type=semver,pattern={{major}}.{{minor}}
type=semver,pattern={{major}}
flavor: |
latest=true
- name: Login to GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Build and push
id: docker_build
uses: docker/build-push-action@v5
with:
context: .
push: true # push to registry
pull: true # always fetch the latest base images
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
- name: Image digest
run: echo ${{ steps.docker_build.outputs.digest }}