Skip to content

chore: clean .gitignore #7

chore: clean .gitignore

chore: clean .gitignore #7

Workflow file for this run

name: Deploy to Aliyun
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build-and-push-image:
name: Build & push docker image
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build the Docker image
run: |
docker login -u ${{ secrets.ALIYUN_REGISTRY_USERNAME }} -p ${{ secrets.ALIYUN_REGISTRY_PASSWORD }} ${{ secrets.ALIYUN_REGISTRY }}
docker build -t ${{ secrets.ALIYUN_REGISTRY }}/${{ secrets.ALIYUN_REGISTRY_NAMESPACE }}/${{ github.event.repository.name }}:latest .
docker push ${{ secrets.ALIYUN_REGISTRY }}/${{ secrets.ALIYUN_REGISTRY_NAMESPACE }}/${{ github.event.repository.name }}:latest