Skip to content

Commit

Permalink
Merge pull request #406 from twenty-three-23/feature/TT-486
Browse files Browse the repository at this point in the history
TT-486
  • Loading branch information
ch8930 authored Nov 20, 2024
2 parents 44537dd + 1cdd1c3 commit 7ade5b9
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/cd_prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
distribution: 'temurin'

- name: Set up GPT_PROMPT_SYSTEM environment variable decode
run: echo "GPT_PROMPT_SYSTEM=${{ secrets.GPT_PROMPT_SYSTEM }}" >> $GITHUB_ENV
run: echo "GPT_PROMPT_SYSTEM=${{ secrets.GPT_PROMPT_SYSTEM }}" | base64 --decode>> $GITHUB_ENV

- name: Set yaml file
uses: microsoft/variable-substitution@v1
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci_prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
distribution: 'temurin'

- name: Set up GPT_PROMPT_SYSTEM environment variable decode
run: echo "GPT_PROMPT_SYSTEM=${{ secrets.GPT_PROMPT_SYSTEM }}" >> $GITHUB_ENV
run: echo "GPT_PROMPT_SYSTEM=${{ secrets.GPT_PROMPT_SYSTEM }}" | base64 --decode>> $GITHUB_ENV

- name: Set yaml file
uses: microsoft/variable-substitution@v1
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cicd_dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
distribution: 'temurin'

- name: Set up GPT_PROMPT_SYSTEM environment variable decode
run: echo "GPT_PROMPT_SYSTEM=${{ secrets.GPT_PROMPT_SYSTEM }}" >> $GITHUB_ENV
run: echo "GPT_PROMPT_SYSTEM=${{ secrets.GPT_PROMPT_SYSTEM }}" | base64 --decode >> $GITHUB_ENV

- name: Set yaml file
uses: microsoft/variable-substitution@v1
Expand Down

0 comments on commit 7ade5b9

Please sign in to comment.