Skip to content

Adding build workflow #12

Adding build workflow

Adding build workflow #12

Workflow file for this run

name: deploy
on:
push:
branches: [master]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Setup environment
uses: actions/setup-python@v3
with:
python-version: 3.11
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
with:
platforms: linux/amd64,linux/arm64
- name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Check out code
uses: actions/checkout@v3
- name: Building wheel
run: |
python -m pip install flit
flit build
- name: Building and pushing container (dockerhub)
uses: docker/build-push-action@v5
with:
push: true
build-args:
- 'dist=dist/trueseeing-*.whl'

Check failure on line 40 in .github/workflows/build.yaml

View workflow run for this annotation

GitHub Actions / deploy

Invalid workflow file

The workflow is not valid. .github/workflows/build.yaml (Line: 40, Col: 13): A sequence was not expected
tags: alterakey/trueseeing:latest