feat: add github action (#4229) #4399
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: Main | |
on: | |
push: | |
# Publish `master` as Docker `latest` image. | |
branches: | |
# - master | |
# - dev | |
- release-* | |
# Publish `v1.2.3` tags as releases. | |
tags: | |
- v* | |
# Run build for any PRs. | |
pull_request: | |
jobs: | |
build-and-push: | |
runs-on: self-hosted | |
strategy: | |
matrix: | |
node-version: [12.18.x] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v1 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Install Dependencies | |
run: npm i -g yarn && yarn | |
- name: Build | |
run: yarn build | |
- name: Test | |
run: yarn test | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v2 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v2 | |
- name: Docker login | |
if: github.event_name == 'push' | |
uses: docker/login-action@v1 | |
with: | |
registry: registry.cn-beijing.aliyuncs.com | |
username: ${{ secrets.DOCKERHUB_USERNAME }} | |
password: ${{ secrets.DOCKERHUB_PASSWORD }} | |
- name: Push image | |
if: github.event_name == 'push' | |
run: | | |
TAG=$(echo "${{ github.ref }}" | sed -e 's,.*/\(.*\),\1,') REPO=registry.cn-beijing.aliyuncs.com/kubesphereio make container-cross-push | |
- 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() |