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

33 lines
641 B
YAML
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
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.14.0
- name: Setup make
run: |
apt update
apt install -y make
- 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-images
run: make build-images