Spaces:
Runtime error
Runtime error
Commit
·
46c1164
1
Parent(s):
e190fe0
updated kaggle.yaml
Browse files- .github/workflows/kaggle.yaml +21 -21
.github/workflows/kaggle.yaml
CHANGED
@@ -8,26 +8,26 @@ on:
|
|
8 |
jobs:
|
9 |
deploy:
|
10 |
runs-on: ubuntu-latest
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
-
|
28 |
|
29 |
-
|
30 |
-
|
31 |
-
|
32 |
-
|
33 |
-
|
|
|
8 |
jobs:
|
9 |
deploy:
|
10 |
runs-on: ubuntu-latest
|
11 |
+
|
12 |
+
- name: Kaggle push
|
13 |
+
uses: joelhanson/kaggle-kernel-actions
|
14 |
+
with:
|
15 |
+
kaggle_username: ${{ secrets.kaggle_username }}
|
16 |
+
kaggle_key: ${{ secrets.kaggle_key }}
|
17 |
+
kernel_id: anujpanthri/train-image-colorization
|
18 |
+
kaggle_make_new_kernel: true
|
19 |
+
code_file_path: kaggle/train-image-colorization.ipynb
|
20 |
+
kaggle_metadata_path: kaggle/kernel-metadata.json
|
21 |
+
collect_output: true
|
22 |
|
23 |
+
- name: Download outputs
|
24 |
+
run: |
|
25 |
+
ls outputs/
|
26 |
+
unzip outputs/outputs.zip
|
27 |
+
ls outputs/outputs/
|
28 |
|
29 |
+
- name: Download outputs
|
30 |
+
uses: actions/upload-artifact@v1
|
31 |
+
with:
|
32 |
+
name: outputs
|
33 |
+
path: outputs/outputs.zip
|