Skip to content

Commit

Permalink
Update python-docker-publish.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
tillsteinbach authored May 28, 2021
1 parent e3ab628 commit 4b340cb
Showing 1 changed file with 42 additions and 10 deletions.
52 changes: 42 additions & 10 deletions .github/workflows/python-docker-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,50 @@ on:
push:
tags:
- "v*"
workflow_dispatch:
inputs:
version:
description: 'Version'
required: true
default: '0.0.0'

jobs:
python-deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
- name: Set up Python
uses: actions/[email protected]
with:
python-version: "3.x"
- name: Version from input
if: github.event_name != 'push'
run: |
echo "version=${{ github.event.inputs.version }}" >> $GITHUB_ENV
- name: Version from pushed tag
if: github.event_name == 'push'
run: |
# from refs/tags/v1.2.3 get 1.2.3
echo "version=$(echo $GITHUB_REF | sed 's#.*/v##')" >> $GITHUB_ENV
- name: Autobump version
run: |
PLACEHOLDER="__version__ = 'develop'"
REPLACEMENT="__version__ = '${{ env.version }}'"
VERSION_FILE="weconnect_mqtt/__version.py"
# ensure the placeholder is there. If grep doesn't find the placeholder
# it exits with exit code 1 and github actions aborts the build.
grep "$PLACEHOLDER" "$VERSION_FILE"
sed -i "s/$PLACEHOLDER/$REPLACEMENT/g" "$VERSION_FILE"
grep "$REPLACEMENT" "$VERSION_FILE"
shell: bash
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install setuptools wheel twine
- name: Build and publish
env:
TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }}
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
run: |
python setup.py sdist bdist_wheel
twine upload dist/*
docker-deploy:
needs: [python-deploy]
runs-on: ubuntu-latest
steps:
- name: Checkout
Expand All @@ -37,13 +72,11 @@ jobs:
path: /tmp/.buildx-cache
key: ${{ runner.os }}-buildx-weconnect-mqtt-${{ github.sha }}
- name: Login to DockerHub
#if: (github.event_name == 'push' && (contains(github.ref, '/heads/main') || contains(github.ref, '/tags/v')))
uses: docker/[email protected]
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Login to GitHub Container Registry
#if: (github.event_name == 'push' && (contains(github.ref, '/heads/main') || contains(github.ref, '/tags/v')))
uses: docker/[email protected]
with:
registry: ghcr.io
Expand All @@ -54,8 +87,7 @@ jobs:
uses: docker/[email protected]
with:
context: docker
push: true
#push: (github.event_name == 'push' && (contains(github.ref, '/heads/main') || contains(github.ref, '/tags/v')))
push: ${{ github.event_name != 'pull_request' }}
platforms: linux/amd64,linux/arm/v7,linux/arm64
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
Expand Down

0 comments on commit 4b340cb

Please sign in to comment.