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: | |
# - master | |
# | |
#jobs: | |
# build_and_push: | |
# runs-on: ubuntu-latest | |
# steps: | |
# - uses: actions/checkout@v2 | |
# - name: Build the Docker image | |
# run: docker build . --file Dockerfile --tag wangsl0809/yuezi_server:${{ github.sha }} | |
# - name: Login to DockerHub | |
# run: echo "${{ secrets.DOCKER_PASSWORD }}" | docker login -u "${{ secrets.DOCKER_USERNAME }}" --password-stdin | |
# - name: Push the Docker image to DockerHub | |
# run: docker push wangsl0809/yuezi_server:${{ github.sha }} |