From 7cc1e05979f9a059187844b5c1fd813a55949e84 Mon Sep 17 00:00:00 2001 From: Rahil Kothari Date: Sun, 11 Aug 2024 13:45:34 +0530 Subject: [PATCH 1/4] fix: Add package lock --- package-lock.json | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 package-lock.json diff --git a/package-lock.json b/package-lock.json new file mode 100644 index 0000000..c779b51 --- /dev/null +++ b/package-lock.json @@ -0,0 +1,6 @@ +{ + "name": "kjsce-codecell.github.io", + "lockfileVersion": 3, + "requires": true, + "packages": {} +} From 646f81f1778b440cd8645b8a77aa6bc0a4cb6e5e Mon Sep 17 00:00:00 2001 From: Rahil Kothari Date: Sun, 11 Aug 2024 13:52:35 +0530 Subject: [PATCH 2/4] fix: Add package.json --- package.json | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 package.json diff --git a/package.json b/package.json new file mode 100644 index 0000000..4e51018 --- /dev/null +++ b/package.json @@ -0,0 +1,11 @@ +{ + "name": "kjsce-codecell.github.io", + "version": "1.0.0", + "description": "The KJSCE CodeCell Website", + "main": "index.js", + "scripts": { + "test": "echo \"Error: no test specified\" && exit 1" + }, + "author": "KJSCE CodeCell", + "license": "ISC" +} From 424e32101460768772afe378206c7e7b342bfa6c Mon Sep 17 00:00:00 2001 From: Rahil Kothari Date: Sun, 11 Aug 2024 13:55:50 +0530 Subject: [PATCH 3/4] Fix deployment script --- .github/workflows/firebase-hosting-pull-request.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/firebase-hosting-pull-request.yml b/.github/workflows/firebase-hosting-pull-request.yml index d4e4cc2..e79b73b 100644 --- a/.github/workflows/firebase-hosting-pull-request.yml +++ b/.github/workflows/firebase-hosting-pull-request.yml @@ -13,7 +13,7 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - - run: npm ci && npm run build + # - run: npm ci && npm run build - uses: FirebaseExtended/action-hosting-deploy@v0 with: repoToken: ${{ secrets.GITHUB_TOKEN }} From 697d3e9defdc29b4715135ba6433f75c75477f5c Mon Sep 17 00:00:00 2001 From: Rahil Kothari Date: Sun, 11 Aug 2024 13:56:09 +0530 Subject: [PATCH 4/4] Fix deployment script --- .github/workflows/firebase-hosting-merge.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/firebase-hosting-merge.yml b/.github/workflows/firebase-hosting-merge.yml index 60f9f98..0ae84d4 100644 --- a/.github/workflows/firebase-hosting-merge.yml +++ b/.github/workflows/firebase-hosting-merge.yml @@ -11,7 +11,7 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - - run: npm ci && npm run build + # - run: npm ci && npm run build - uses: FirebaseExtended/action-hosting-deploy@v0 with: repoToken: ${{ secrets.GITHUB_TOKEN }}