Skip to content

Commit f2e3a10

Browse files
committed
Updated pages-workflow run command
1 parent 304671a commit f2e3a10

1 file changed

Lines changed: 14 additions & 9 deletions

File tree

.github/workflows/pages-workflow.yml

Lines changed: 14 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -6,22 +6,27 @@ on:
66

77
jobs:
88
build-pages:
9-
runs-on: windows-latest
9+
runs-on: ubuntu-latest
1010

1111
steps:
1212
- name: Prereqs
1313
run : |
14-
curl -o Natural_Docs.2.3.1.msi https://www.naturaldocs.org/download/natural_docs/2.3.1/Natural_Docs_2.3.1.msi
15-
icacls Natural_Docs.2.3.1.msi /grant Users:F
16-
dir
17-
Natural_Docs.2.3.1.msi
14+
cd ..
15+
sudo apt-get update
16+
sudo apt install ca-certificates gnupg
17+
sudo gpg --homedir /tmp --no-default-keyring --keyring /usr/share/keyrings/mono-official-archive-keyring.gpg --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 3FA7E0328081BFF6A14DA29AA6A19B38D3D831EF
18+
echo "deb [signed-by=/usr/share/keyrings/mono-official-archive-keyring.gpg] https://download.mono-project.com/repo/ubuntu stable-focal main" | sudo tee /etc/apt/sources.list.d/mono-official-stable.list
19+
sudo apt update
20+
sudo apg-get install -y git curl unzip mono-devel
21+
curl -o nd.zip https://www.naturaldocs.org/download/natural_docs/2.3.1/Natural_Docs_2.3.1.zip
22+
unzip nd.zip
23+
ls
24+
1825
1926
- name: Checkout Repo
2027
uses: actions/checkout@v4
2128

2229
- name: Run Natural-Docs
2330
run: |
24-
dir
25-
NaturalDocs docs\config
26-
cd docs
27-
dir
31+
ll
32+
ll ..

0 commit comments

Comments
 (0)