Skip to content

Commit

Permalink
Decentralize CI/CD
Browse files Browse the repository at this point in the history
  • Loading branch information
QubitPi committed Nov 17, 2024
1 parent 80017a0 commit ba80584
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions .github/workflows/ci-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -84,8 +84,11 @@ jobs:
- uses: actions/setup-node@v3
with:
node-version: 18
- name: Test environment setup
uses: ./.github/actions/ci-setup
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
java-version: ${{ env.JDK_VERSION }}
distribution: ${{ env.JDK_DISTRIBUTION }}
- name: Install dependencies
working-directory: docs
run: yarn
Expand Down Expand Up @@ -114,8 +117,11 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Test environment setup
uses: ./.github/actions/ci-setup
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
java-version: ${{ env.JDK_VERSION }}
distribution: ${{ env.JDK_DISTRIBUTION }}
- name: Build App WAR file so that Docker can pickup during image build
run: mvn clean package
- name: Set up QEMU
Expand Down

0 comments on commit ba80584

Please sign in to comment.