mirror of https://github.com/dirtbags/moth.git
actually push built images
This commit is contained in:
parent
fef27eadfc
commit
9b58e9ab14
|
@ -54,6 +54,7 @@ jobs:
|
||||||
with:
|
with:
|
||||||
target: moth
|
target: moth
|
||||||
file: build/package/Containerfile
|
file: build/package/Containerfile
|
||||||
|
push: true
|
||||||
tags: |
|
tags: |
|
||||||
dirtbags/moth:${{ steps.vars.outputs.tag }}
|
dirtbags/moth:${{ steps.vars.outputs.tag }}
|
||||||
docker.pkg.github.com/dirtbags/moth/moth:${{ steps.vars.outputs.tag }}
|
docker.pkg.github.com/dirtbags/moth/moth:${{ steps.vars.outputs.tag }}
|
||||||
|
@ -63,6 +64,7 @@ jobs:
|
||||||
with:
|
with:
|
||||||
target: moth
|
target: moth
|
||||||
file: build/package/Containerfile
|
file: build/package/Containerfile
|
||||||
|
push: true
|
||||||
tags: |
|
tags: |
|
||||||
dirtbags/moth-devel:${{ steps.vars.outputs.tag }}
|
dirtbags/moth-devel:${{ steps.vars.outputs.tag }}
|
||||||
docker.pkg.github.com/dirtbags/moth/moth-devel:${{ steps.vars.outputs.tag }}
|
docker.pkg.github.com/dirtbags/moth/moth-devel:${{ steps.vars.outputs.tag }}
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
FROM golang:1.13 AS builder
|
FROM golang:1-alpine AS builder
|
||||||
COPY go.* /src/
|
COPY go.* /src/
|
||||||
COPY pkg /src/pkg/
|
COPY pkg /src/pkg/
|
||||||
COPY cmd /src/cmd/
|
COPY cmd /src/cmd/
|
||||||
|
|
Loading…
Reference in New Issue