Migrate to pyproject config file, update python base image #125
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Build and publish | |
| on: | |
| pull_request: | |
| types: [closed] | |
| branches: | |
| - master | |
| - develop | |
| - beta | |
| - stable | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| python-version: [3.13] | |
| if: github.event.pull_request.merged | |
| env: | |
| DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }} | |
| DOCKER_PASSWORD: ${{ secrets.DOCKER_PASSWORD }} | |
| steps: | |
| - uses: actions/checkout@v5 | |
| with: | |
| submodules: true | |
| - name: Set up Python 3.13 | |
| uses: actions/setup-python@v6 | |
| with: | |
| python-version: 3.13 | |
| - name: Build and publish container | |
| run: | | |
| export BRANCH=${GITHUB_REF##*/} | |
| export VERSION=$(grep '^version = ' pyproject.toml | cut -d'"' -f2) | |
| echo "Branch: $BRANCH" | |
| echo "Base version: $VERSION" | |
| export VERSION=$(bash ./helper-scripts/calculate_version.sh) | |
| echo "VERSION=$VERSION" >> $GITHUB_ENV | |
| echo "Version $VERSION" | |
| export RELEASE=true | |
| echo "RELEASE=$RELEASE" >> $GITHUB_ENV | |
| export CONTAINER_NAME="transaction-manager" | |
| bash ./helper-scripts/build_and_publish.sh | |
| - name: Checkout code | |
| uses: actions/checkout@master | |
| - name: Create Release | |
| id: create_release | |
| uses: actions/create-release@v1 | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| with: | |
| tag_name: ${{ env.VERSION }} | |
| release_name: ${{ env.VERSION }} | |
| draft: false | |
| prerelease: true |