chore: update helm chart to avoid invalid value #1139
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: BUILD-CI | |
on: | |
pull_request: | |
types: [opened, reopened, synchronize] | |
jobs: | |
dist-tar: | |
name: Build distribution tar | |
runs-on: ubuntu-latest | |
timeout-minutes: 120 | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: true | |
- name: Install flatc | |
run: sudo bash install_flatc.sh | |
- uses: actions/setup-java@v3 | |
with: | |
distribution: "temurin" | |
java-version: "17" | |
cache: "maven" | |
- name: Cache Docker images. | |
uses: ScribeMD/docker-cache@0.3.6 | |
with: | |
key: docker-${{ runner.os }} | |
- name: Build distribution tar | |
run: | | |
mvn -Prelease-all clean install -U | |
- uses: actions/upload-artifact@v3 | |
name: Upload distribution tar | |
with: | |
name: rocketmq | |
path: distribution/target/automq-for-rocketmq.zip | |
pr-e2e: | |
name: PR e2e test | |
uses: ./.github/workflows/pr-e2e-test.yml | |
secrets: inherit | |
needs: dist-tar |