Skip to content

bump to v0.1.6

bump to v0.1.6 #11

Workflow file for this run

name: New Release
on:
push:
tags:
- "v*"
release:
types: [published]
branches: [main]
jobs:
publish:
name: Publish on PyPI
runs-on: ubuntu-latest
permissions:
# IMPORTANT: this permission is mandatory for trusted publishing
id-token: write
steps:
- name: Check out
uses: actions/checkout@v3
- name: Set up the environment
uses: ./.github/actions/setup-poetry-env
- name: Export tag
id: vars
run: echo tag=${GITHUB_REF#refs/*/} >> $GITHUB_OUTPUT
- name: Build source files
run: |
source .venv/bin/activate
poetry version $RELEASE_VERSION
poetry build
env:
RELEASE_VERSION: ${{ steps.vars.outputs.tag }}
- name: Publish package distributions to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
- name: Build Changelog
id: github_release
uses: mikepenz/release-changelog-builder-action@v3
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# docker:
# needs: publish
# name: Build container
# runs-on: ubuntu-latest
# steps:
# - name: "☁️ checkout repository"
# uses: actions/checkout@v2
# - name: "🔧 setup buildx"
# uses: docker/setup-buildx-action@v1
# - name: "🔧 cache docker layers"
# uses: actions/cache@v2
# with:
# path: /tmp/.buildx-cache
# key: ${{ runner.os }}-buildx-${{ github.sha }}
# restore-keys: |
# ${{ runner.os }}-buildx-
# - name: "🔧 docker meta"
# id: meta
# uses: docker/metadata-action@v3
# with:
# images: ${{ github.repository }}
# tags: latest
# - name: "📦 docker build"
# uses: docker/build-push-action@v2
# with:
# context: .
# tags: ${{ steps.meta.outputs.tags }}
# labels: ${{ steps.meta.outputs.labels }}
# outputs: type=docker,dest=/tmp/docker.tar
# push: false
# cache-from: type=gha, scope=${{ github.workflow }}
# cache-to: type=gha, scope=${{ github.workflow }}
# - name: "📂 docker artifacts"
# uses: actions/upload-artifact@v2
# with:
# name: docker
# path: /tmp/docker.tar