We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4ee75fa commit 62bcb66Copy full SHA for 62bcb66
.github/workflows/setup.yml
@@ -25,7 +25,11 @@ jobs:
25
script_path = Path('scripts/experiments.sh')
26
script = script_path.read_text().replace('codingpot', username)
27
script = script.replace('git-mlops', repo_name)
28
+ script_path.write_text(script)
29
30
+ script_path = Path('scripts/jl_exp_wandb.sh')
31
+ script = script_path.read_text().replace('codingpot', username)
32
+ script = script.replace('git-mlops', repo_name)
33
script_path.write_text(script)
34
shell: python
35
@@ -65,4 +69,4 @@ jobs:
65
69
head: 'automated-setup',
66
70
base: 'main',
67
71
body: `${contents}`
68
- });
72
+ });
0 commit comments