Merge pull request #395 from RainbowMango/pr_publish_latest

Add workflows to publish latest image automatically
This commit is contained in:
karmada-bot 2021-06-21 21:01:09 +08:00 committed by GitHub
commit dba61fa92e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 29 additions and 0 deletions

29
.github/workflows/image.yml vendored Normal file
View File

@ -0,0 +1,29 @@
name: Image
on:
push:
branches:
- master
jobs:
publish-image:
name: publish images
# prevent job running from forked repository, otherwise
# 1. running on the forked repository would fail as missing necessary secret.
# 2. running on the forked repository would use unnecessary GitHub Action time.
if: ${{ github.repository == 'karmada-io/karmada' && github.ref == 'refs/heads/master' }}
runs-on: ubuntu-latest
steps:
- name: checkout code
uses: actions/checkout@v2
- name: install Go
uses: actions/setup-go@v2
with:
go-version: 1.14.x
- name: build images
env:
REGISTRY: ${{secrets.SWR_REGISTRY}}
REGISTRY_USER_NAME: ${{secrets.SWR_REGISTRY_USER_NAME}}
REGISTRY_PASSWORD: ${{secrets.SWR_REGISTRY_PASSWORD}}
REGISTRY_SERVER_ADDRESS: ${{secrets.SWR_REGISTRY_SERVER_ADDRESS}}
VERSION: latest
run: make upload-images