Skip to content

update vlx price decimals #28

update vlx price decimals

update vlx price decimals #28

Workflow file for this run

name: Build-Deploy
on:
push:
branches: [master]
env:
APP_NAME: velas-solana-explorer
APP_REPO: velas-solana-explorer
jobs:
docker-build:
name: Build and push
runs-on: monster-builder
outputs:
repository: ${{ steps.build.outputs.repository }}
image_tag: ${{ steps.build.outputs.image_tag }}
steps:
- uses: actions/checkout@v2
- name: Build, tag, and push image
id: build
env:
REGISTRY: ${{ secrets.REGISTRY_HOST }}/velas
REPOSITORY: ${{ env.APP_REPO }}
IMAGE_TAG: ${{github.sha}}
run: |
docker build -t $REGISTRY/$REPOSITORY:$IMAGE_TAG --no-cache .
docker push $REGISTRY/$REPOSITORY:$IMAGE_TAG