chore(deps): update all patch dependencies #4129
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: Testing Staging Manifest | |
on: | |
- pull_request | |
jobs: | |
testing_manifest: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3.6.0 | |
# I'm cheating and using this action to install kubectl | |
- name: Setup helmfile | |
uses: mamezou-tech/[email protected] | |
with: | |
install-kubectl: yes | |
install-helm: yes | |
- name: Add fake .env | |
run: | | |
cp env.example env/staging/.env | |
- name: Test staging manifest build | |
uses: ./.github/actions/test-manifest | |
if: always() | |
with: | |
build-target: staging-debug | |
echo-manifest: true |