From 48aa37d4b1726bc014026db8f75e4d3239513be1 Mon Sep 17 00:00:00 2001 From: Digital Forensic Research Lab <43441797+DFRLab@users.noreply.github.com> Date: Sat, 12 Oct 2024 11:44:37 -0400 Subject: [PATCH 1/3] Create deploy-to-github-pages.yml --- .github/workflows/deploy-to-github-pages.yml | 36 ++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 .github/workflows/deploy-to-github-pages.yml diff --git a/.github/workflows/deploy-to-github-pages.yml b/.github/workflows/deploy-to-github-pages.yml new file mode 100644 index 0000000..6b9ee24 --- /dev/null +++ b/.github/workflows/deploy-to-github-pages.yml @@ -0,0 +1,36 @@ +# This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node +# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-nodejs + +name: Node.js CI + +on: + push: + branches: [ "master" ] + +jobs: + build: + + runs-on: ubuntu-latest + + strategy: + matrix: + node-version: [18.x, 20.x, 22.x] + # See supported Node.js release schedule at https://nodejs.org/en/about/releases/ + + steps: + - uses: actions/checkout@v4 + - name: Use Node.js ${{ matrix.node-version }} + uses: actions/setup-node@v4 + with: + node-version: ${{ matrix.node-version }} + cache: 'npm' + - name: Install dependencies + run: npm ci + - name: Build + run: npm run build + - name: Deploy to GitHub Pages + uses: peaceiris/actions-gh-pages@v3 + with: + github_token: ${{ secrets.GITHUB_TOKEN }} + publish_dir: ./build # Adjust this to your build output directory + publish_branch: gh-pages From b4d46e331515135fd852a09e78fd168614b541d7 Mon Sep 17 00:00:00 2001 From: Digital Forensic Research Lab <43441797+DFRLab@users.noreply.github.com> Date: Sat, 12 Oct 2024 11:59:17 -0400 Subject: [PATCH 2/3] Update deploy-to-github-pages.yml --- .github/workflows/deploy-to-github-pages.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/deploy-to-github-pages.yml b/.github/workflows/deploy-to-github-pages.yml index 6b9ee24..bc40d4a 100644 --- a/.github/workflows/deploy-to-github-pages.yml +++ b/.github/workflows/deploy-to-github-pages.yml @@ -14,7 +14,7 @@ jobs: strategy: matrix: - node-version: [18.x, 20.x, 22.x] + node-version: [18.x] # See supported Node.js release schedule at https://nodejs.org/en/about/releases/ steps: From 845ed3b6274c35eddd780029a05428ccccd715c4 Mon Sep 17 00:00:00 2001 From: Max Rizzuto <22903087+Mrizzuto@users.noreply.github.com> Date: Mon, 14 Oct 2024 11:44:34 -0400 Subject: [PATCH 3/3] Add CNAME for TLD redirect --- CNAME | 1 + 1 file changed, 1 insertion(+) create mode 100644 CNAME diff --git a/CNAME b/CNAME new file mode 100644 index 0000000..8ecf786 --- /dev/null +++ b/CNAME @@ -0,0 +1 @@ +interference2024.org \ No newline at end of file