Queue should expire TTL milliseconds after last consumer left #3436
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: Docker images | |
on: | |
pull_request: | |
paths: | |
- .github/workflows/docker.yml | |
- Makefile | |
- Dockerfile | |
- shard.lock | |
- src/** | |
- static/** | |
- views/** | |
- openapi/** | |
push: | |
branches: | |
- main | |
tags: | |
- 'v*' | |
paths: | |
- .github/workflows/docker.yml | |
- Makefile | |
- Dockerfile | |
- shard.lock | |
- src/** | |
- static/** | |
- views/** | |
- openapi/** | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
main: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
id-token: write | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Docker meta | |
id: meta | |
uses: docker/metadata-action@v5 | |
with: | |
images: cloudamqp/lavinmq | |
tags: | | |
type=raw,value=latest,enable={{is_default_branch}} | |
type=semver,pattern={{version}} | |
type=ref,event=pr | |
- name: Set up Depot CLI | |
uses: depot/setup-action@v1 | |
- name: Login to DockerHub | |
uses: docker/login-action@v3 | |
with: | |
username: ${{ secrets.DOCKERHUB_USERNAME }} | |
password: ${{ secrets.DOCKERHUB_TOKEN }} | |
- name: Build and push | |
uses: depot/build-push-action@v1 | |
with: | |
platforms: linux/amd64,linux/arm64 | |
pull: true | |
push: true | |
tags: ${{ steps.meta.outputs.tags }} | |
labels: ${{ steps.meta.outputs.labels }} | |
build-args: | | |
MAKEFLAGS=-j1 |