Skip to content

fix: handle error when setting account information #2

fix: handle error when setting account information

fix: handle error when setting account information #2

Workflow file for this run

name: Push to Docker Hub
on:
push:
tags:
- "v*.*.*"
jobs:
docker:
runs-on: ubuntu-latest
steps:
-
name: Checkout
uses: actions/checkout@v4
-
name: Git fetch everything
run: git fetch --prune --unshallow
-
name: Get Github tag
id: meta
run: |
echo "tag=$(git describe --always --tags --match='v*')" >> "$GITHUB_OUTPUT"
-
name: Set up QEMU
uses: docker/setup-qemu-action@v3
-
name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
-
name: Login to DockerHub
uses: docker/login-action@v3
with:
registry: docker.io
username: tharsishq
password: ${{ secrets.DOCKERHUB_TOKEN }}
-
name: Build and push
uses: docker/build-push-action@v5
with:
context: .
push: true
platforms: linux/amd64, linux/arm64
tags: tharsishq/evmos:latest, tharsishq/evmos:${{ steps.meta.outputs.tag }}