This repository has been archived by the owner on Dec 21, 2024. It is now read-only.
feat(toolchain): add get-current-version and get-endpoint commands #396
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: Build and Push Docker Image | |
on: | |
push: | |
branches: | |
- '**' | |
jobs: | |
build-and-push: | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: Docker Build Push | |
uses: ./.github/actions/docker-build-push | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
context: . | |
file: cli.Dockerfile | |
platforms: linux/amd64,linux/arm64 | |
build_tags: | | |
rivetgg/opengb:${{ github.sha }} | |
rivetgg/opengb:${{ github.ref_name || '' }} |