From 3dab647e164999f6a71de2c51936c8dd56b38853 Mon Sep 17 00:00:00 2001 From: CaIon <1808837298@qq.com> Date: Mon, 27 Nov 2023 19:13:12 +0800 Subject: [PATCH] delete workflows --- .github/workflows/docker-image-amd64.yml | 32 ---------------------- .github/workflows/docker-image-private.yml | 32 ---------------------- 2 files changed, 64 deletions(-) delete mode 100644 .github/workflows/docker-image-amd64.yml delete mode 100644 .github/workflows/docker-image-private.yml diff --git a/.github/workflows/docker-image-amd64.yml b/.github/workflows/docker-image-amd64.yml deleted file mode 100644 index 1ab220c..0000000 --- a/.github/workflows/docker-image-amd64.yml +++ /dev/null @@ -1,32 +0,0 @@ -name: Docker Image CI - -on: - push: - branches: [ "main" ] - pull_request: - branches: [ "main" ] - -jobs: - - build: - - runs-on: ubuntu-latest - - steps: - - uses: actions/checkout@v3 - - uses: docker/login-action@v3.0.0 - with: - username: ${{ secrets.DOCKERHUB_USERNAME }} - password: ${{ secrets.DOCKERHUB_TOKEN }} - - name: Extract metadata (tags, labels) for Docker - id: meta - uses: docker/metadata-action@v3 - with: - images: calciumion/neko-api - - name: Build the Docker image - uses: docker/build-push-action@v5.0.0 - with: - context: . - push: true - tags: ${{ steps.meta.outputs.tags }} - labels: ${{ steps.meta.outputs.labels }} diff --git a/.github/workflows/docker-image-private.yml b/.github/workflows/docker-image-private.yml deleted file mode 100644 index c40eae3..0000000 --- a/.github/workflows/docker-image-private.yml +++ /dev/null @@ -1,32 +0,0 @@ -name: Docker Image CI - -on: - push: - branches: [ "private" ] - pull_request: - branches: [ "private" ] - -jobs: - - build: - - runs-on: ubuntu-latest - - steps: - - uses: actions/checkout@v3 - - uses: docker/login-action@v3.0.0 - with: - username: ${{ secrets.DOCKERHUB_USERNAME }} - password: ${{ secrets.DOCKERHUB_TOKEN }} - - name: Extract metadata (tags, labels) for Docker - id: meta - uses: docker/metadata-action@v3 - with: - images: calciumion/neko-api - - name: Build the Docker image - uses: docker/build-push-action@v5.0.0 - with: - context: . - push: true - tags: ${{ steps.meta.outputs.tags }} - labels: ${{ steps.meta.outputs.labels }}