Skip to content

DEVOP-32: fix typo

DEVOP-32: fix typo #31

Workflow file for this run

name: "build-test"
on: # rebuild any PRs and main branch changes
pull_request:
push:
branches:
- master
- DEVOP-32
jobs:
# build: # make sure build/ci work properly
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v4
# - uses: actions/setup-node@v4
# with:
# node-version: 12
# - run: |
# npm install
# npm npm run build
# npm run pack
# npm run coverage
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