Skip to content

Fix GH test action poetry installer #19

Fix GH test action poetry installer

Fix GH test action poetry installer #19

Workflow file for this run

name: Build and push Docker images
on:
push:
branches: [main]
tags:
- "*"
jobs:
publish:
steps:
- uses: actions/checkout@v2
- name: build docker image
uses: docker/[email protected]
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
repository: openstates/bobsled
dockerfile: /github/workspace/Dockerfile
tag_with_ref: true
tags: latest
runs-on: ubuntu-18.04