Skip to content

Commit 7af9082

Browse files
committed
Below:
* Removed the build step installing 'tree' as it's preinstalled in ubuntu-latest of GitHub Actions * Fixed: Use Classless version of PicoCSS in index.html
1 parent 2400c2a commit 7af9082

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

.github/workflows/go.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,8 +53,9 @@ jobs:
5353
echo "Ready to deploy!"
5454
- name: Output the files structure into a JSON file
5555
run: |
56-
sudo apt update
57-
sudo apt install -y tree
56+
# GitHub Actions' ubuntu-latest comes preinstalled with tree. So no need to install tree.
57+
#sudo apt update
58+
#sudo apt install -y tree
5859
tree -J public > ./public/files.json
5960
echo "JSON Manifest generated with the directory structure!"
6061
- name: Make web pages available

dist/pages/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<meta charset="UTF-8">
55
<title>Artifact Explorer</title>
66
<!-- PicoCSS via CDN -->
7-
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@picocss/pico@latest/css/pico.min.css">
7+
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@picocss/pico@latest/css/pico.classless.min.css">
88
<style>
99
.file-list {
1010
list-style: none;

0 commit comments

Comments
 (0)