feat: Integrate helm-values into deploy command #188
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
# This workflow is setup to run CI checks for aladdin | |
# At this time it only ensures the docker image is buildable | |
# In the future it could run linting, tests, etc | |
name: Pull Request | |
on: | |
pull_request: | |
branches: | |
- main | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check Out Repo | |
uses: actions/checkout@v2 | |
# QEMU is needed to support multi-platform builds | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v1 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v1 | |
- name: Build | |
uses: docker/build-push-action@v2 | |
with: | |
push: false # don't push to Dockerhub for all PRs | |
platforms: linux/amd64,linux/arm64 # ensure builds succeed for both platforms |