Skip to content

Commit

Permalink
Mock PRD with STG for tentative release before pre BE-release in PRD
Browse files Browse the repository at this point in the history
  • Loading branch information
piroux-sg committed Mar 29, 2024
1 parent c0d298f commit 89a6789
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,6 @@ jobs:
make test-examples-quickstart ARGS="-v ${VERSION} -f github-release-draft";
shell: bash
env:
STACKGUARDIAN_API_KEY: '${{ secrets.SG_PRD_API_KEY }}'
STACKGUARDIAN_ORG_NAME: '${{ secrets.SG_PRD_ORG_NAME }}'
STACKGUARDIAN_API_KEY: '${{ secrets.SG_STG_API_KEY }}' # FIXME(Release): Revert to PRD
STACKGUARDIAN_ORG_NAME: '${{ secrets.SG_STG_ORG_NAME }}' # FIXME(Release): Revert to PRD
GH_TOKEN: '${{ github.token }}'
18 changes: 9 additions & 9 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,9 @@ jobs:
- name: "Test Provider with acceptance tests"
run: make test-acc
env:
STACKGUARDIAN_API_URI: '${{ secrets.SG_PRD_API_URI }}'
STACKGUARDIAN_API_KEY: '${{ secrets.SG_PRD_API_KEY }}'
STACKGUARDIAN_ORG_NAME: '${{ secrets.SG_PRD_ORG_NAME }}'
STACKGUARDIAN_API_URI: '${{ secrets.SG_STG_API_URI }}' # FIXME(Release): Revert to PRD
STACKGUARDIAN_API_KEY: '${{ secrets.SG_STG_API_KEY }}' # FIXME(Release): Revert to PRD
STACKGUARDIAN_ORG_NAME: '${{ secrets.SG_STG_ORG_NAME }}' # FIXME(Release): Revert to PRD

- name: "Test Provider with quickstart example"
run: |
Expand All @@ -51,9 +51,9 @@ jobs:
make test-examples-quickstart ARGS="-f local-build";
shell: bash
env:
STACKGUARDIAN_API_KEY: '${{ secrets.SG_PRD_API_KEY }}'
STACKGUARDIAN_API_URI: '${{ secrets.SG_PRD_API_URI }}'
STACKGUARDIAN_ORG_NAME: '${{ secrets.SG_PRD_ORG_NAME }}'
STACKGUARDIAN_API_KEY: '${{ secrets.SG_STG_API_KEY }}' # FIXME(Release): Revert to PRD
STACKGUARDIAN_API_URI: '${{ secrets.SG_STG_API_URI }}' # FIXME(Release): Revert to PRD
STACKGUARDIAN_ORG_NAME: '${{ secrets.SG_STG_ORG_NAME }}' # FIXME(Release): Revert to PRD

- name: "Test Provider with onboarding example"
run: |
Expand All @@ -62,9 +62,9 @@ jobs:
make test-examples-onboarding ARGS="-f local-build";
shell: bash
env:
STACKGUARDIAN_API_KEY: '${{ secrets.SG_PRD_API_KEY }}'
STACKGUARDIAN_API_URI: '${{ secrets.SG_PRD_API_URI }}'
STACKGUARDIAN_ORG_NAME: '${{ secrets.SG_PRD_ORG_NAME }}'
STACKGUARDIAN_API_KEY: '${{ secrets.SG_STG_API_KEY }}' # FIXME(Release): Revert to PRD
STACKGUARDIAN_API_URI: '${{ secrets.SG_STG_API_URI }}' # FIXME(Release): Revert to PRD
STACKGUARDIAN_ORG_NAME: '${{ secrets.SG_STG_ORG_NAME }}' # FIXME(Release): Revert to PRD

- name: "Check Provider docs"
run: |
Expand Down

0 comments on commit 89a6789

Please sign in to comment.