Skip to content
This repository has been archived by the owner on Oct 7, 2023. It is now read-only.

Commit

Permalink
add untested actions workflow that uses ko
Browse files Browse the repository at this point in the history
  • Loading branch information
markpash committed Jun 12, 2021
1 parent f95b0d6 commit 8bacd9a
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/push-image.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Publish docker image

on:
push:
branches: ['master']

jobs:
build-n-push:
name: build and push image to ghcr.io
runs-on: ubuntu-latest
steps:
- uses: actions/setup-go@v2
with:
go-version: 1.16
- uses: actions/checkout@v2
- uses: imjasonh/setup-ko@v0.4
- run: ko publish ./

0 comments on commit 8bacd9a

Please sign in to comment.