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