update tarscpp/tarsweb #101
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: latest | |
on: | |
push: | |
branches: [ master ] | |
paths-ignore: | |
- "docs/**" | |
- "charts/**" | |
- ".github/workflows/build-compiler-*.yml" | |
- ".github/workflows/build-deploy*.yml" | |
jobs: | |
build: | |
runs-on: ubuntu-20.04 | |
timeout-minutes: 360 | |
env: | |
DOCKER_RUN_WITHOUT_IT: 1 | |
REGISTRY_URL: docker.io/tarscloud | |
REGISTRY_USER: ${{ secrets.name }} | |
REGISTRY_PASSWORD: ${{ secrets.pass }} | |
steps: | |
- name: Check out the repo | |
uses: actions/checkout@v3 | |
- name: Build And Push Base Images | |
run: make base BUILD_VERSION=latest PLATFORMS='linux/amd64 linux/arm64' | |
- name: Build And Push Controller Server Image | |
run: make controller BUILD_VERSION=latest PLATFORMS='linux/amd64 linux/arm64' | |
- name: Build And Push Framework Server Image | |
run: make framework BUILD_VERSION=latest PLATFORMS='linux/amd64 linux/arm64' |