-- fix #28
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: Docker Image CI | |
on: | |
push: | |
branches: [ "master" ] | |
pull_request: | |
branches: [ "master" ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Build the Docker image | |
run: docker build . --file Dockerfile --tag registry.cn-hangzhou.aliyuncs.com/lexmargin/qq-bot:latest | |
- name: Push image to AliCloud | |
run: | | |
docker version | |
# login to aliCloud image repository | |
docker login --username=${{ secrets.DOCKER_USERNAME }} --password=${{ secrets.DOCKER_PASSWORD }} registry.cn-hangzhou.aliyuncs.com | |
# push image to aliCloud private repository | |
docker push registry.cn-hangzhou.aliyuncs.com/lexmargin/qq-bot:latest |