Skip to content

Update README.md: fix typo (#137) #72

Update README.md: fix typo (#137)

Update README.md: fix typo (#137) #72

Workflow file for this run

name: Release
on:
push:
branches:
- master
env:
PROJECT: "github.com/kelindar/talaria"
GO111MODULE: "on"
jobs:
publish:
name: Docker
runs-on: ubuntu-latest
steps:
- name: Install Go
uses: actions/setup-go@v1
with:
go-version: 1.16
id: go
- name: Login to DockerHub Registry
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_PASSWORD }}
- name: Check out code into the Go module directory
uses: actions/checkout@v1
- name: Build the Docker image
run: |
go build .
docker build . --file Dockerfile --tag kelindar/talaria:latest
- name: Push the Docker image
run: docker push kelindar/talaria:latest