Fix bot management for delete and stop

This commit is contained in:
2025-05-10 13:52:09 +07:00
parent ba2fbc976a
commit b7d5a0b6a7
10 changed files with 41 additions and 28 deletions

View File

@@ -10,13 +10,29 @@ jobs:
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Build and test your app (customize as needed)
run: |
# Add your build and test commands here
# For example:
# npm install
# npm run build
# npm run test
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to Container Registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Preset Image Name
run: echo "IMAGE_URL=$(echo ghcr.io/${{ github.repository_owner }}/${{ github.event.repository.name }}:$(echo ${{ github.sha }} | cut -c1-7) | tr '[:upper:]' '[:lower:]')" >> $GITHUB_ENV
- name: Build and push Docker Image
uses: docker/build-push-action@v5
with:
context: ./src/Managing.WebApp
file: ./src/Managing.WebApp/Dockerfile-web-ui-dev
push: true
tags: ${{ env.IMAGE_URL }}
# - name: Create deploy.tar
# uses: a7ul/tar-action@v1.1.0
# with: