Compare commits

...

3 commits

Author SHA1 Message Date
Aaron Yarborough
58e557dd79 chore: bump version 2025-03-16 10:20:19 +00:00
Aaron Yarborough
125e9ef475 feat: add view src to footer 2025-03-16 10:19:41 +00:00
Aaron Yarborough
bdb7b6308c chore: remove gh stuff 2025-03-16 10:19:29 +00:00
4 changed files with 4 additions and 80 deletions

View file

@ -1,39 +0,0 @@
name: Build and Test Next.js site
on:
pull_request:
branches: [ '*' ] # Wildcard matches all branches
workflow_dispatch:
jobs:
build-and-test:
runs-on: docker
steps:
- uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 'latest'
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Build
run: npm run build
- name: Test
run: npm run test
- name: Cache Next.js build
uses: actions/cache@v3
with:
path: |
~/.npm
.next/cache
key: ${{ runner.os }}-nextjs-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-nextjs-

View file

@ -1,40 +0,0 @@
name: Deploy site
on:
push:
branches: [ main ]
workflow_dispatch:
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 'latest'
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Build
run: npm run build
- name: Test
run: npm run test
- name: "Deploy"
uses: milanmk/actions-file-deployer@master
with:
remote-protocol: "sftp"
remote-host: ${{ secrets.SFTP_HOST }}
remote-user: ${{ secrets.SFTP_USERNAME }}
remote-password: ${{ secrets.SFTP_PASSWORD }}
remote-path: "/root/www-aaronjy-me/"

View file

@ -1,6 +1,6 @@
{
"name": "www-aaronjy-2024",
"version": "1.1.0.5",
"version": "1.2.0.0",
"private": true,
"type": "module",
"scripts": {

View file

@ -19,6 +19,9 @@ function Footer () {
</span>{', '}
<span>
<a href='mailto:me@aaronjy.me'>Send me an email</a>
</span>{', '}
<span>
<a href='https://git.aaronjy.me/aaron/aaronjy-me' target='_blank' rel='nofollow noopener noreferrer'>View site src</a>
</span>
</div>