Skip to content

Commit

Permalink
Workflows (#2)
Browse files Browse the repository at this point in the history
* Update dockerfile to build from source

* Add workflows for test on push, publish docker on release, and publish executbles on release

* typo

* updated name

* fixed finger problem

* Fix Docker Push
  • Loading branch information
mattkasun authored Nov 14, 2021
1 parent c780284 commit 26edfb1
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/publish-docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,13 +48,14 @@ jobs:
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
-
name: Build and push to Docker Hub
name: Build and Push
uses: docker/build-push-action@v2
with:
image: ${{ github.repository }}
context: .
platforms: linux/amd64
push: true
tags: ${{ env.VERSION }}
tags: |
${{ github.repository }}:${{ env.VERSION }}
ghcr.io/${{ github.repository }}:${{ env.VERSION }}
build-args: |
VERSION=${{ env.VERSION }}

0 comments on commit 26edfb1

Please sign in to comment.