mirror of
https://github.com/ysoftdevs/imagepullsecret-injector.git
synced 2026-01-16 00:34:02 +01:00
28 lines
543 B
YAML
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 |