diff --git a/.github/workflows/build_docker.yml b/.github/workflows/build_docker.yml new file mode 100644 index 0000000..68dfb07 --- /dev/null +++ b/.github/workflows/build_docker.yml @@ -0,0 +1,27 @@ +name: Build and Push Docker Image to Alibaba Cloud + +on: + push: + branches: + - main + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - name: Checkout code + uses: actions/checkout@v2 + + - name: Login to Alibaba Cloud Container Registry + env: + DOCKER_REGISTRY: ${{ secrets.ALICLOUD_REGISTRY }} + DOCKER_USERNAME: ${{ secrets.ALICLOUD_USERNAME }} + DOCKER_PASSWORD: ${{ secrets.ALICLOUD_PASSWORD }} + run: | + echo $DOCKER_PASSWORD | docker login --username=$DOCKER_USERNAME --password-stdin $DOCKER_REGISTRY + - name: Build Docker image + run: docker build -t ${{ secrets.ALICLOUD_REGISTRY }}/ss1917/codo-admin:latest . + + - name: Push Docker image + run: docker push ${{ secrets.ALICLOUD_REGISTRY }}/ss1917/codo-admin:latest \ No newline at end of file diff --git a/.gitignore b/.gitignore index e963947..cd95825 100644 --- a/.gitignore +++ b/.gitignore @@ -96,8 +96,8 @@ ENV/ # mkdocs documentation /site -.github/ -.github/* +#.github/ +#.github/* # mypy .mypy_cache/