2020-10-04 21:53:38 +00:00
|
|
|
name: Docker
|
|
|
|
|
|
|
|
on:
|
|
|
|
schedule:
|
2020-10-06 11:59:31 +00:00
|
|
|
- cron: '0 4 * * *' # everyday at 4 am UTC
|
2020-10-04 21:53:38 +00:00
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- master
|
|
|
|
tags:
|
|
|
|
- v*
|
|
|
|
pull_request:
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
name: Build
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Checkout
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
|
|
|
|
- name: Gather image information
|
|
|
|
id: info
|
|
|
|
run: |
|
|
|
|
DOCKER_IMAGE=ghcr.io/drakkan/sftpgo
|
|
|
|
VERSION=noop
|
|
|
|
if [ "${{ github.event_name }}" = "schedule" ]; then
|
|
|
|
VERSION=nightly
|
|
|
|
elif [[ $GITHUB_REF == refs/tags/* ]]; then
|
|
|
|
VERSION=${GITHUB_REF#refs/tags/}
|
|
|
|
elif [[ $GITHUB_REF == refs/heads/* ]]; then
|
|
|
|
VERSION=$(echo ${GITHUB_REF#refs/heads/} | sed -r 's#/+#-#g')
|
|
|
|
if [ "${{ github.event.repository.default_branch }}" = "$VERSION" ]; then
|
|
|
|
VERSION=edge
|
|
|
|
fi
|
|
|
|
elif [[ $GITHUB_REF == refs/pull/* ]]; then
|
|
|
|
VERSION=pr-${{ github.event.number }}
|
|
|
|
fi
|
|
|
|
TAGS="${DOCKER_IMAGE}:${VERSION}"
|
|
|
|
if [[ $GITHUB_REF == refs/tags/* ]]; then
|
|
|
|
TAGS="$TAGS,${DOCKER_IMAGE}:latest"
|
|
|
|
fi
|
|
|
|
echo ::set-output name=version::${VERSION}
|
|
|
|
echo ::set-output name=tags::${TAGS}
|
|
|
|
echo ::set-output name=created::$(date -u +'%Y-%m-%dT%H:%M:%SZ')
|
2020-10-04 22:17:17 +00:00
|
|
|
echo ::set-output name=sha::${GITHUB_SHA::8}
|
2020-10-04 21:53:38 +00:00
|
|
|
|
|
|
|
- name: Set up QEMU
|
|
|
|
uses: docker/setup-qemu-action@v1
|
|
|
|
|
|
|
|
- name: Set up Docker Buildx
|
|
|
|
uses: docker/setup-buildx-action@v1
|
|
|
|
|
2020-10-05 14:17:10 +00:00
|
|
|
- name: Login to GitHub Container Registry
|
|
|
|
uses: docker/login-action@v1
|
|
|
|
with:
|
|
|
|
registry: ghcr.io
|
|
|
|
username: ${{ github.repository_owner }}
|
|
|
|
password: ${{ secrets.CR_PAT }}
|
|
|
|
if: github.event_name != 'pull_request'
|
2020-10-04 21:53:38 +00:00
|
|
|
|
|
|
|
- name: Build and push
|
|
|
|
uses: docker/build-push-action@v2
|
|
|
|
with:
|
2020-10-05 14:17:10 +00:00
|
|
|
push: ${{ github.event_name != 'pull_request' }}
|
2020-10-04 21:53:38 +00:00
|
|
|
tags: ${{ steps.info.outputs.tags }}
|
2020-10-04 22:17:17 +00:00
|
|
|
build-args: |
|
|
|
|
COMMIT_SHA=${{ steps.info.outputs.sha }}
|
2020-10-06 11:59:31 +00:00
|
|
|
platforms: linux/amd64,linux/arm64
|
2020-10-04 21:53:38 +00:00
|
|
|
labels: |
|
2020-10-05 17:42:33 +00:00
|
|
|
org.opencontainers.image.title=SFTPGo
|
2020-10-05 15:24:09 +00:00
|
|
|
org.opencontainers.image.description=Fully featured and highly configurable SFTP server with optional FTP/S and WebDAV support
|
2020-10-06 16:03:55 +00:00
|
|
|
org.opencontainers.image.url=https://github.com/users/drakkan/packages/container/package/sftpgo
|
|
|
|
org.opencontainers.image.documentation=https://github.com/drakkan/sftpgo/blob/master/docker/README.md
|
|
|
|
org.opencontainers.image.source=https://github.com/drakkan/sftpgo.git
|
2020-10-04 21:53:38 +00:00
|
|
|
org.opencontainers.image.version=${{ steps.info.outputs.version }}
|
|
|
|
org.opencontainers.image.created=${{ steps.info.outputs.created }}
|
|
|
|
org.opencontainers.image.revision=${{ github.sha }}
|
2020-10-06 16:03:55 +00:00
|
|
|
org.opencontainers.image.licenses=GPL-3.0
|