feat: del workflow

This commit is contained in:
zzw
2026-08-19 09:17:09 +08:00
parent 49df2ec952
commit 678d2ae4ac
2 changed files with 0 additions and 31 deletions
-31
View File
@@ -1,31 +0,0 @@
name: CI
on:
push:
branches:
- develop
workflow_dispatch:
jobs:
docker:
runs-on: runner
env:
NAME: lone/xunlian
steps:
- name: Checkout
uses: https://git.ailuowan.com/deploy/checkout@v4
- name: Login Registry
run: |
echo "${{ secrets.REGISTRY_PASSWORD }}" | docker login ${{ vars.REGISTRY }} -u "${{ vars.REGISTRY_USERNAME }}" --password-stdin
- name: Docker build
run: |
docker buildx build --load \
-f Dockerfile \
-t ${{ vars.REGISTRY }}/$NAME:latest \
.
- name: Docker push
run: |
docker push ${{ vars.REGISTRY }}/$NAME:latest