DEVOP-32: Include helm migration from v2 to v3 in the action #33
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-test" | |
on: # rebuild any PRs and main branch changes | |
pull_request: | |
push: | |
branches: | |
- master | |
jobs: | |
test: # make sure the action works on a clean machine without building | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: peachjar/action-install-deploy-tools@v4 | |
with: | |
githubUsername: ${{ secrets.GITHUB_DEPLOY_USER }} | |
githubToken: ${{ secrets.GITHUB_DEPLOY_TOKEN }} | |
- run: | | |
pwd | |
echo "Ahoha" | |
cat ./peachjar-aloha/echo-server/templates/deployment.yml || true | |
- uses: ./ | |
with: | |
awsAccessKeyId: ${{ secrets.AWS_ACCESS_KEY_ID }} | |
awsSecretAccessKey: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | |
environment: kauai | |
helmChartPath: echo-server/ | |
helmReleaseName: echo-server | |
dockerImage: hashicorp/http-echo | |
dockerTag: latest |