Skip to content

Commit

Permalink
build: capturing new migrations.
Browse files Browse the repository at this point in the history
  • Loading branch information
awais786 committed Oct 31, 2023
1 parent 40bec3f commit 2819758
Showing 1 changed file with 12 additions and 4 deletions.
16 changes: 12 additions & 4 deletions .github/workflows/capture_new_migrations.yml
Original file line number Diff line number Diff line change
Expand Up @@ -119,10 +119,18 @@ jobs:
# echo "Running the CMS migrations."
# ./manage.py cms migrate

- id: step1
run: echo "stepOutput=value" >> "$GITHUB_OUTPUT"
- id: step2
run: echo "${{ steps.step1.stepOutput }}"
- name: "Setup env vars"
id: envvars
run: |
echo "TEST_VAR=$TEST_VAR" >> $GITHUB_OUTPUT
echo "SERVICE_NAME=$SERVICE_NAME" >> $GITHUB_OUTPUT
env:
TEST_VAR: "test variable value"

- name: "Var is "
run: |
echo "${{ steps.envvars.outputs.TEST_VAR }}"
echo "${{ steps.envvars.outputs.SERVICE_NAME }}"
- name: Verify executed migrations on master.
id: capture1
Expand Down

0 comments on commit 2819758

Please sign in to comment.