Skip to content

Commit

Permalink
fix: disable unused workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
kainlite committed Jan 7, 2025
1 parent 0af2f10 commit e6127f0
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: 'build images'

on:
push:
# on:
# push:

jobs:
docker:
Expand All @@ -15,6 +15,12 @@ jobs:
name: Set up QEMU
uses: docker/setup-qemu-action@v3

- name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3

Expand All @@ -41,12 +47,6 @@ jobs:
# Set output parameters.
echo tags=${TAGS} >> ${GITHUB_OUTPUT}
- name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}

- name: Build and push
uses: docker/build-push-action@v6
with:
Expand Down

0 comments on commit e6127f0

Please sign in to comment.