Skip to content

Commit

Permalink
chore(ci): disabled docker image build
Browse files Browse the repository at this point in the history
  • Loading branch information
Skraye committed Aug 6, 2024
1 parent 0162810 commit 7a13ed7
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -117,10 +117,12 @@ jobs:
uses: docker/setup-qemu-action@v3

- name: Set up Docker Buildx
if: ${{ github.event.inputs.skip-test == 'false' || github.event.inputs.skip-test == '' }}
uses: docker/setup-buildx-action@v3

# Docker Build
- name: Build & Export Docker Image
if: ${{ github.event.inputs.skip-test == 'false' || github.event.inputs.skip-test == '' }}
uses: docker/build-push-action@v6
with:
context: .
Expand Down Expand Up @@ -275,7 +277,7 @@ jobs:
release:
name: Github Release
runs-on: ubuntu-latest
needs: [ check, check-e2e ]
needs: build-artifacts
if: startsWith(github.ref, 'refs/tags/v')
steps:
# Download Exec
Expand Down Expand Up @@ -367,7 +369,7 @@ jobs:
maven:
name: Publish to Maven
runs-on: ubuntu-latest
needs: [check, check-e2e]
needs: [check]
if: github.ref == 'refs/heads/develop' || startsWith(github.ref, 'refs/tags/v')
steps:
- uses: actions/checkout@v4
Expand Down

0 comments on commit 7a13ed7

Please sign in to comment.