[digitalocean deploy] Fixed deploy network #3
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 Deploy Docker Image | |
on: | |
push: | |
tags: | |
- 'v*' | |
jobs: | |
build-and-deploy: | |
name: Build and Deploy Docker Image | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v1 | |
- name: Login to DockerHub | |
uses: docker/login-action@v1 | |
with: | |
username: ${{ secrets.DOCKERHUB_USERNAME }} | |
password: ${{ secrets.DOCKERHUB_TOKEN }} | |
- name: Build and push Docker image | |
uses: docker/build-push-action@v2 | |
with: | |
context: . | |
file: ./Dockerfile | |
push: true | |
tags: | | |
starcoin/starcoin_explorer:latest | |
starcoin/starcoin_explorer:${{ github.sha }} | |
build-args: | | |
REACT_APP_STARCOIN_API_URL=https://doapi.stcscan.io | |
REACT_APP_STARCOIN_NETWORKS=main,banard,proxima,halley,vega | |
- name: Image digest | |
run: echo ${{ steps.docker_build.outputs.digest }} | |
- name: Verify push to DockerHub | |
run: | | |
echo "Image pushed to DockerHub successfully!" | |
echo "Tags:" | |
echo " - starcoin/starcoin_explorer:latest" | |
echo " - starcoin/starcoin_explorer:${{ github.sha }}" | |
- name: Deployment notification | |
if: success() | |
run: | | |
echo "Docker image has been successfully built and pushed to DockerHub." | |
echo "You can pull the latest image using:" | |
echo "docker pull starcoin/starcoin_explorer:latest" |