github action improved tagging

This commit is contained in:
Mark Schmitt 2021-01-08 20:37:25 +01:00
parent 29f73b2dbb
commit 52640f08d2
4 changed files with 17 additions and 14 deletions

View File

@ -1,32 +1,34 @@
name: Docker
name: docker
on:
push:
branches: travis-multiarch-builds
branches:
- master
- dev
tags:
- 'ng-*'
jobs:
# Build and push image to docker hub.
# build and push image to docker hub.
buildx:
runs-on: ubuntu-latest
needs: [tests, documentation, frontend]
if: github.ref == 'refs/heads/github-action-test'
steps:
- uses: actions/checkout@v2
- name: Prepare
id: prepare
env:
DOCKER_IMAGE: ${{ secrets.DOCKER_IMAGE }}
run: |
DOCKER_IMAGE=moztr/paperless-ng
DOCKER_PLATFORMS=linux/amd64,linux/arm/v7,linux/arm64/v8
VERSION=edge
if [[ $GITHUB_REF == refs/tags/* ]]; then
VERSION=${GITHUB_REF#refs/tags/v}
VERSION=${GITHUB_REF#refs/tags/}
fi
if [ "${{ github.event_name }}" = "schedule" ]; then
VERSION=nightly
if [[ $GITHUB_REF == refs/heads/* ]]; then
VERSION=${GITHUB_REF#refs/heads/}
fi
TAGS="--tag ${DOCKER_IMAGE}:${VERSION}"
if [[ $VERSION =~ ^[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}$ ]]; then
if [[ $VERSION == "master" ]]; then
TAGS="$TAGS --tag ${DOCKER_IMAGE}:latest"
fi
echo ::set-output name=docker_image::${DOCKER_IMAGE}

View File

@ -24,6 +24,7 @@ jobs:
path: ${{ steps.pip-cache.outputs.dir }}
key: ${{ runner.os }}-pip3.6.8}
- name: dependencies
# instead of directly installing the dependency in the workflow file, can this be done using the pipfile instead?
run: |
pip install 'sphinx~=3.3' sphinx_rtd_theme
- name: make

View File

@ -1,6 +1,6 @@
name: frontend
# always run frontend workflow
# always run frontend workflow to see if it builds and tests run fine
on: push
jobs:

View File

@ -8,8 +8,8 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-20.04]
python:
os: ubuntu-20.04]
python: # pyenv-action requires the exact version
- 3.6.8
- 3.7.9
- 3.8.6