Skip to content

build(deps): bump efb-qq-slave from 2.0.1 to 2.0.2 #1

build(deps): bump efb-qq-slave from 2.0.1 to 2.0.2

build(deps): bump efb-qq-slave from 2.0.1 to 2.0.2 #1

Workflow file for this run

---
name: 'build'
on:
push:
branches:
- master
paths-ignore:
- '.github/dependabot.yml'
- 'LICENSE'
- 'README.md'
jobs:
docker:
name: Build and push Docker image
runs-on: ubuntu-latest
outputs:
meta: ${{ steps.meta.outputs.json }}
steps:
-
name: Docker meta
id: meta
uses: docker/metadata-action@v5
with:
images: ghcr.io/${{ github.repository_owner }}/ehforwarderbot
tags: |
type=sha,prefix=sha-,format=short
type=raw,value=latest
-
name: Set up QEMU
uses: docker/setup-qemu-action@v3
-
name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
-
name: Login to GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
-
name: Build and push
uses: docker/build-push-action@v5
with:
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
cache-from: type=gha
cache-to: type=gha,mode=max