mirror of
https://github.com/axllent/mailpit.git
synced 2025-01-26 03:52:09 +02:00
38 lines
900 B
YAML
38 lines
900 B
YAML
|
on:
|
||
|
release:
|
||
|
types: [created]
|
||
|
|
||
|
name: Build docker images
|
||
|
jobs:
|
||
|
docker:
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- name: Checkout repository
|
||
|
uses: actions/checkout@v3
|
||
|
|
||
|
- name: Get tag
|
||
|
id: tag
|
||
|
uses: dawidd6/action-get-tag@v1
|
||
|
|
||
|
- name: Set up QEMU
|
||
|
uses: docker/setup-qemu-action@v2
|
||
|
|
||
|
- name: Set up Docker Buildx
|
||
|
uses: docker/setup-buildx-action@v2
|
||
|
|
||
|
- name: Login to DockerHub
|
||
|
uses: docker/login-action@v2
|
||
|
with:
|
||
|
username: ${{ secrets.DOCKER_USERNAME }}
|
||
|
password: ${{ secrets.DOCKER_ACCESS_TOKEN }}
|
||
|
|
||
|
- name: Build and push
|
||
|
uses: docker/build-push-action@v3
|
||
|
with:
|
||
|
context: .
|
||
|
platforms: linux/amd64,linux/arm64,linux/arm
|
||
|
build-args: |
|
||
|
"VERSION=${{ steps.tag.outputs.tag }}"
|
||
|
push: true
|
||
|
tags: axllent/mailpit:latest,axllent/mailpit:${{ steps.tag.outputs.tag }}
|