docker-pleroma/.github/workflows/publish.yml

58 lines
1.4 KiB
YAML
Raw Normal View History

2021-02-02 07:29:26 +00:00
on:
workflow_dispatch:
inputs:
container_tag:
description: Tag for container
default: "latest"
required: true
push:
branches:
- main
schedule:
- cron: '0 0 12 1/1 *'
name: Publish container
env:
CONTAINER_NAME: jordemort/pleroma:${{ github.event.inputs.container_tag || 'latest' }}
2021-02-03 02:54:30 +00:00
CACHE_NAME: jordemort/pleroma:cache-unzip
2021-02-02 07:29:26 +00:00
DOCKER_CLI_EXPERIMENTAL: enabled
jobs:
publish:
name: Build and publish image
runs-on: ubuntu-20.04
steps:
- name: Set up QEMU
uses: docker/setup-qemu-action@v1
- name: Set up Docker Buildx
id: buildx
uses: docker/setup-buildx-action@v1
- name: Login to container registry
uses: docker/login-action@v1
with:
username: ${{ secrets.REGISTRY_USERNAME }}
password: ${{ secrets.REGISTRY_TOKEN }}
- uses: actions/checkout@v2
- name: Build and push container
2021-02-03 02:54:30 +00:00
run: |
docker buildx build --push --pull \
--platform "linux/amd64,linux/arm64,linux/arm/v7" \
--cache-from "$CACHE_NAME" \
--tag "$CACHENAME" --target unzip .
- name: Build and push container
run: |
docker buildx build --push --pull \
--platform "linux/amd64,linux/arm64,linux/arm/v7" \
--cache-from "$CACHE_NAME" \
--cache-from "$CONTAINER_NAME" \
--tag "$CONTAINER_NAME" .