[master] fix: the description of the role uses data from the API (#4440) #4572
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: Main | |
on: | |
push: | |
# Publish `master` as Docker `latest` image. | |
branches: | |
- master | |
# - dev | |
- release-* | |
workflow_dispatch: | |
env: | |
# TODO: Change variable to your image's name. | |
IMAGE_NAME: ks-console | |
IMAGE_REPO: kubespheredev | |
jobs: | |
release-linux-amd64: | |
runs-on: ubuntu-latest | |
if: github.repository == 'kubesphere/console' | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v1 | |
with: | |
platforms: all | |
- name: Set up Docker buildx | |
uses: docker/setup-buildx-action@v1 | |
- name: Log into registry | |
run: echo "${{ secrets.DOCKERHUB_PASSWORD }}" | docker login -u ${{ secrets.DOCKERHUB_USERNAME }} --password-stdin | |
- name: Push image | |
run: | | |
TAG=${GITHUB_REF#refs/*/} REPO=$IMAGE_REPO make container-cross-push | |
echo "Push $IMAGE success!" | |
- name: slack | |
uses: 8398a7/action-slack@v3 | |
env: | |
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }} | |
with: | |
status: ${{ job.status }} | |
fields: repo,message,commit,author,action,eventName,ref,workflow,job,took | |
if: failure() |