Skip to content

Only publish images to repo on tag, distinguish between latest and la… #427

Only publish images to repo on tag, distinguish between latest and la…

Only publish images to repo on tag, distinguish between latest and la… #427

Workflow file for this run

name: build
on: [push]
jobs:
build:
runs-on: ubuntu-latest
if: github.event_name == 'push' && contains(github.ref, 'refs/tags/')
steps:
- uses: actions/checkout@master
- name: Get version tag
id: get_tag
run: |
if [ ${{ endsWith(github.ref, '-lts') }} = true ]; then
echo "tag=latest-lts,${GITHUB_REF:10}" >>$GITHUB_OUTPUT
# Branch of JSON schema files to include
TAG=${GITHUB_REF:11}
echo "branch=${TAG/.[0-9]-lts/-lts}" >>$GITHUB_OUTPUT
else
echo "tag=latest,${GITHUB_REF:10}" >>$GITHUB_OUTPUT
# Branch of JSON schema files to include
echo "branch=master" >>$GITHUB_OUTPUT
fi
- name: Build and publish docker image without qgis
uses: elgohr/Publish-Docker-Github-Action@v5
if: github.event_name != 'pull_request'
env:
BRANCH: "${{ steps.get_tag.outputs.branch }}"
with:
name: sourcepole/${{ github.event.repository.name }}
username: ${{ secrets.DOCKER_HUB_USER }}
password: ${{ secrets.DOCKER_HUB_PASSWORD }}
dockerfile: Dockerfile-noqgis
buildargs: BRANCH
tags: "${{ steps.get_tag.outputs.tag }}-noqgis"
- name: Build and publish docker image
uses: elgohr/Publish-Docker-Github-Action@v5
if: github.event_name != 'pull_request'
env:
BRANCH: "${{ steps.get_tag.outputs.branch }}"
with:
name: sourcepole/${{ github.event.repository.name }}
username: ${{ secrets.DOCKER_HUB_USER }}
password: ${{ secrets.DOCKER_HUB_PASSWORD }}
buildargs: BRANCH
tags: "${{ steps.get_tag.outputs.tag }}"