This repository has been archived by the owner on May 21, 2024. It is now read-only.
Bump github.com/jenkins-x/go-scm from 1.14.14 to 1.14.34 #82
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Docker Image CI | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
build: | |
if: github.repository == 'gitops-tools/image-updater' | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out code into the Go module directory | |
uses: actions/checkout@v2 | |
- name: build docker image and push | |
uses: docker/build-push-action@v1 | |
with: | |
username: ${{ secrets.DOCKER_USERNAME }} | |
password: ${{ secrets.DOCKER_PASSWORD }} | |
repository: bigkevmcd/image-updater | |
tag_with_ref: true | |
tag_with_sha: true | |
tags: latest |