Skip to content
Snippets Groups Projects
Commit a2021b74 authored by Frédéric Guillot's avatar Frédéric Guillot
Browse files

Generate Docker tag from GitHub Action

parent 80b68fb1
No related branches found
No related tags found
No related merge requests found
name: Docker name: Docker
on: on:
schedule: schedule:
- cron: '0 20 * * *' - cron: '0 1 * * *'
push: push:
tags: tags:
- '*.*.*' - '*.*.*'
...@@ -12,6 +12,21 @@ jobs: ...@@ -12,6 +12,21 @@ jobs:
- name: Checkout - name: Checkout
uses: actions/checkout@v2 uses: actions/checkout@v2
- name: Generate Docker tag
id: docker_tag
run: |
DOCKER_IMAGE=miniflux/miniflux
DOCKER_VERSION=dev
if [ "${{ github.event_name }}" = "schedule" ]; then
DOCKER_VERSION=nightly
elif [[ $GITHUB_REF == refs/tags/* ]]; then
DOCKER_VERSION=${GITHUB_REF#refs/tags/}
fi
TAGS="${DOCKER_IMAGE}:${DOCKER_VERSION}"
echo ::set-output name=version::${DOCKER_VERSION}
echo ::set-output name=tags::${TAGS}
echo ::set-output name=created::$(date -u +'%Y-%m-%dT%H:%M:%SZ')
- name: Set up QEMU - name: Set up QEMU
uses: docker/setup-qemu-action@v1 uses: docker/setup-qemu-action@v1
...@@ -31,3 +46,4 @@ jobs: ...@@ -31,3 +46,4 @@ jobs:
file: ./packaging/docker/Dockerfile file: ./packaging/docker/Dockerfile
platforms: linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64 platforms: linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64
push: true push: true
tags: ${{ steps.docker_tag.outputs.tags }}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment