mirror of
https://github.com/hashicorp/vault-action.git
synced 2025-11-08 15:46:56 +00:00
fix ordering of build steps
This commit is contained in:
parent
a2cae737a3
commit
8e836c6e8e
1 changed files with 5 additions and 5 deletions
10
.github/workflows/build.yml
vendored
10
.github/workflows/build.yml
vendored
|
|
@ -180,11 +180,6 @@ jobs:
|
||||||
secrets: |
|
secrets: |
|
||||||
secret/data/subsequent-test secret | SUBSEQUENT_TEST_SECRET;
|
secret/data/subsequent-test secret | SUBSEQUENT_TEST_SECRET;
|
||||||
|
|
||||||
- name: Verify Vault Action Outputs
|
|
||||||
run: npm run test:integration:e2e
|
|
||||||
env:
|
|
||||||
OTHER_SECRET_OUTPUT: ${{ steps.kv-secrets.outputs.otherSecret }}
|
|
||||||
|
|
||||||
- name: Test Parsing Secrets (part 1/2)
|
- name: Test Parsing Secrets (part 1/2)
|
||||||
# this step sets up secres to be used in Test Parsing Secrets (part 2/2)
|
# this step sets up secres to be used in Test Parsing Secrets (part 2/2)
|
||||||
uses: ./
|
uses: ./
|
||||||
|
|
@ -201,6 +196,11 @@ jobs:
|
||||||
run: |
|
run: |
|
||||||
node ./scripts/parse.js
|
node ./scripts/parse.js
|
||||||
|
|
||||||
|
- name: Verify Vault Action Outputs
|
||||||
|
run: npm run test:integration:e2e
|
||||||
|
env:
|
||||||
|
OTHER_SECRET_OUTPUT: ${{ steps.kv-secrets.outputs.otherSecret }}
|
||||||
|
|
||||||
|
|
||||||
e2e-tls:
|
e2e-tls:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue