Skip to content

Cleaning up a ton of shit #178

Cleaning up a ton of shit

Cleaning up a ton of shit #178

Workflow file for this run

name: Docker Image CI
on:
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: docker/setup-buildx-action@v3
- id: version
run: |
python -m venv ./venv
./venv/bin/pip install dunamai
echo "APP_VERSION=$(./venv/bin/dunamai from git --style pep440)" >> $GITHUB_OUTPUT
- uses: docker/build-push-action@v6
with:
context: .
push: false
tags: ci
build-args: |
APP_VERSION=${{ steps.version.outputs.APP_VERSION }}