fix faucet #207
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 update image | |
on: | |
push: | |
branches: | |
- master | |
- generator* | |
paths: | |
- subnet/deployment-generator/** | |
tags: | |
- '*' | |
workflow_dispatch: #allow manual trigger to workflow | |
jobs: | |
build_and_push_image: | |
name: build and push image to registry | |
runs-on: ubuntu-latest | |
environment: DockerHub | |
defaults: | |
run: | |
working-directory: subnet/deployment-generator | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v3 | |
- name: Docker login | |
env: | |
DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }} | |
DOCKER_PASSWORD: ${{ secrets.DOCKER_PASSWORD }} | |
run: | | |
echo "$DOCKER_PASSWORD" | docker login -u "$DOCKER_USERNAME" --password-stdin | |
- name: Determine Docker Image Name | |
id: image | |
run: | | |
if [[ "${{github.ref_name}}" == "master" ]]; then | |
echo "name=xinfinorg/subnet-generator:latest" >> $GITHUB_OUTPUT | |
else | |
echo "name=xinfinorg/subnet-generator:${{github.ref_name}}" >> $GITHUB_OUTPUT | |
fi | |
- name: Build and push image | |
run: | | |
docker build . --file docker/Dockerfile \ | |
--build-arg SUBNET_BRANCH=${{ steps.commit.outputs.commit}} \ | |
--build-arg IMAGE_NAME=${{ steps.image.outputs.name }} \ | |
--tag ${{ steps.image.outputs.name }} | |
docker push ${{ steps.image.outputs.name }} |