diff --git a/.github/workflows/pipeline.yml b/.github/workflows/pipeline.yml index da4b076..f58e74e 100644 --- a/.github/workflows/pipeline.yml +++ b/.github/workflows/pipeline.yml @@ -16,7 +16,7 @@ jobs: - name: Set up Node.js uses: actions/setup-node@v4 with: - node-version: '20.11.1' + node-version: "20.11.1" - name: Install dependencies run: npm install - name: Collect assets @@ -26,6 +26,6 @@ jobs: with: github_token: ${{ secrets.GITHUB_TOKEN }} publish_dir: ./public - keep_files: false + keep_files: true allow_empty_commit: true force_orphan: true diff --git a/public/index.html b/public/index.html index e57c77d..38cc0fd 100644 --- a/public/index.html +++ b/public/index.html @@ -32,15 +32,15 @@ document.getElementById("output").innerHTML = JSON.stringify(report, null, 2) }) - function fetchTTL() { - fetch('requirement-profiles/meta.ttl') + function fetchTurtleDev() { + fetch("requirement-profiles/meta.ttl") .then(response => response.text()) .then(data => { console.log("data", data) }) .catch(err => console.error(err)); } - fetchTTL() + fetchTurtleDev()