Skip to content

Commit 44eee6e

Browse files
untar artifact
1 parent b34234b commit 44eee6e

2 files changed

Lines changed: 4 additions & 3 deletions

File tree

.github/workflows/render-and-publish.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,9 @@ jobs:
3838
fi
3939
echo "Downloading Pages artifact from run $latest_run (artifact $artifact_id)."
4040
gh api "/repos/$REPO/actions/artifacts/$artifact_id/zip" > /tmp/pages.zip
41-
unzip -q /tmp/pages.zip -d site/_site
42-
echo "Contents of site/_site after artifact unzip:"
41+
unzip -q /tmp/pages.zip -d /tmp/artifact_unzip
42+
tar -xf /tmp/artifact_unzip/artifact.tar -C site/_site
43+
echo "Contents of site/_site after artifact extraction:"
4344
ls -la site/_site | head -50
4445
4546
- name: Set up Python

src/data_visualization/aog/column_combinations.clj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
:date "2026-01-011"
77
:description "Can we plot interesting charts for all columns of a dataset?"
88
:category :data-visualization
9-
:tags [:datavis]
9+
:tags [:datavis :clay]
1010
:keywords [:datavis]}}}
1111
(ns data-visualization.aog.column-combinations
1212
(:require

0 commit comments

Comments
 (0)