Skip to content

Commit

Permalink
Closer to decrypting
Browse files Browse the repository at this point in the history
  • Loading branch information
synedra committed Jan 31, 2024
1 parent 256fb56 commit 459bd4c
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,12 @@ jobs:
- uses: actions/checkout@v4
- run: python --version
- run: cd ${{ github.workspace }}
- run: echo "ASTRA_DB_APPLICATION_TOKEN=${{ secrets.ASTRA_DB_APPLICATION_TOKEN }}" > .env
- run: echo ${{ secrets.TOKEN_JSON }} | base64 --decode > .env
- run: mv .env token.json
- run: echo ${{ secrets.CREDENTIALS_JSON }} | base64 --decode > .env
- run: mv .env credentials.json
- run: echo "" > .env
- run: echo "ASTRA_DB_APPLICATION_TOKEN=${{ secrets.ASTRA_DB_APPLICATION_TOKEN }}" >> .env
- run: echo "ASTRA_DB_API_ENDPOINT=${{ secrets.ASTRA_DB_API_ENDPOINT }}" >> .env
- run: echo "GITHUB_TOKEN=${{ secrets.GITHUB_TOKEN }}" >> .env
- run: echo "OPENAI_API_KEY=${{ secrets.OPENAI_API_KEY }}" >> .env
Expand Down

0 comments on commit 459bd4c

Please sign in to comment.