Files
imagepullsecret-injector/.github/workflows/release-docker.yaml
2021-04-02 22:57:47 +02:00

28 lines
543 B
YAML

name: Release docker images
on:
push:
branches:
- main
jobs:
release:
runs-on: ubuntu-latest
steps:
- name: Setup Go
uses: actions/setup-go@v2
with:
go-version: '1.15.0'
- name: Checkout
uses: actions/checkout@v1
with:
ref: main
- name: Configure Git
run: |
git config user.name "$GITHUB_ACTOR"
git config user.email "$GITHUB_ACTOR@users.noreply.github.com"
- name: make build-image
run: make build-image