refactor: Update coverage test workflow to create command configuration file properly

This commit is contained in:
Soulter
2024-08-17 05:25:45 -04:00
parent dcf96896ef
commit ae6dd8929a
+5 -2
View File
@@ -14,9 +14,12 @@ jobs:
fetch-depth: 0
- name: Write secret to file
run: mkdir data && echo "$CMD_CONFIG" > data/cmd_config.json
env:
MY_SECRET: ${{ secrets.CMD_CONFIG }}
MY_SECRET: ${{ secrets.CMD_CONFIG }}
run: |
mkdir data
touch data/cmd_config.json
echo "$CMD_CONFIG" > data/cmd_config.json
- name: Set up Python
uses: actions/setup-python@v4