Skip to content

Commit

Permalink
[fix] experemental workaround
Browse files Browse the repository at this point in the history
see [BUG] CICD deploy has been failing on `develop` for the past 7 months eXist-db#5450
  • Loading branch information
duncdrum committed Nov 12, 2024
1 parent 9bc97a1 commit 44ac3cd
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/ci-deploy.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: Deploy
on: [push, pull_request]
on: [push, pull_request_target]
jobs:
build:
name: Build and Test Images
Expand Down Expand Up @@ -32,7 +32,11 @@ jobs:
key: deploy-${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: deploy-${{ runner.os }}-maven
- name: Install bats
run: sudo apt-get install bats
run: sudo apt-get install bats
# Hack around #5450
- name: pull base image
run: |
docker pull --platform linux/amd64 --platform linux/arm64 gcr.io/distroless/java17-debian12:latest
- name: Build images
run: mvn -V -B -q -Pdocker -DskipTests -Ddependency-check.skip=true -P !mac-dmg-on-unix,!installer,!concurrency-stress-tests,!micro-benchmarks,skip-build-dist-archives clean package
- name: Check local images
Expand Down

0 comments on commit 44ac3cd

Please sign in to comment.