Compare commits

..

1 Commits

Author SHA1 Message Date
Martin Berg Alstad
48bb18e0ec Updated dependencies.
Updated GitHub Action tools
2024-06-07 23:06:42 +02:00
8 changed files with 1034 additions and 1542 deletions

View File

@ -1,45 +0,0 @@
name: Deploy
on:
pull_request:
branches:
- master
push:
branches:
- master
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v4
- name: Install dependencies
run: echo y | npm exec -- pnpm install
- name: Build project
run: npm exec -- pnpm build
- name: Upload production-ready build files
uses: actions/upload-artifact@v3
with:
name: dist
path: ./dist
deploy:
name: Deploy
needs: build
runs-on: host
steps:
- name: Download artifact
uses: actions/download-artifact@v3
with:
name: dist
path: ./dist
# Deploy to local repo
- name: Move files to server
run: |
rm -rf /var/www/martials.no/*
cp -r dist/* /var/www/martials.no

59
.github/workflows/build.yml vendored Normal file
View File

@ -0,0 +1,59 @@
name: Deploy
on:
pull_request:
push:
branches:
- master
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
with:
version: 8
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 18
- name: Install dependencies
run: pnpm install
- name: Build project
run: pnpm build
- name: Upload production-ready build files
uses: actions/upload-artifact@v4
with:
name: production-files
path: ./dist
deploy:
name: Deploy
needs: build
runs-on: ubuntu-latest
if: github.ref == 'refs/heads/master'
steps:
- name: Download artifact
uses: actions/download-artifact@v4
with:
name: production-files
path: ./dist
# Deploy to local repo
- name: Deploy
uses: s0/git-publish-subdir-action@develop
env:
REPO: self
BRANCH: build
FOLDER: dist
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

View File

@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="JavaScriptLibraryMappings">
<file url="PROJECT" libraries="{latest}" />
<includedPredefinedLibrary name="Node.js Core" />
</component>
</project>

1
.idea/martials.no.iml generated
View File

@ -8,6 +8,5 @@
</content>
<orderEntry type="inheritedJdk" />
<orderEntry type="sourceFolder" forTests="false" />
<orderEntry type="library" name="latest" level="application" />
</component>
</module>

View File

@ -7,14 +7,9 @@
<title>Hjem | Martials.no</title>
<meta name="description" content="Hjemmeside for API og diverse" />
<link rel="icon" type="image/x-icon" href="resources/code.svg" />
<!-- 100% privacy-first analytics -->
<script data-collect-dnt="true" async defer src="https://scripts.simpleanalyticscdn.com/latest.js"></script>
</head>
<body>
<noscript>
You need to enable JavaScript to run this app.
<img src="https://queue.simpleanalyticscdn.com/noscript.gif?collect-dnt=true" alt="" referrerpolicy="no-referrer-when-downgrade" />
</noscript>
<noscript>You need to enable JavaScript to run this app.</noscript>
<div id="root"></div>
<script src="/src/app.tsx" type="module"></script>

View File

@ -11,22 +11,22 @@
},
"license": "MIT",
"devDependencies": {
"autoprefixer": "^10.4.17",
"postcss": "^8.4.35",
"prettier": "3.2.5",
"prettier-plugin-tailwindcss": "^0.5.11",
"tailwindcss": "^3.4.1",
"typescript": "^5.3.3",
"vite": "^5.1.4",
"vite-plugin-solid": "^2.10.1"
"autoprefixer": "^10.4.19",
"postcss": "^8.4.38",
"prettier": "3.3.1",
"prettier-plugin-tailwindcss": "^0.6.2",
"tailwindcss": "^3.4.4",
"typescript": "^5.4.5",
"vite": "^5.2.13",
"vite-plugin-solid": "^2.10.2"
},
"dependencies": {
"@solidjs/router": "^0.12.4",
"@types/diff": "^5.0.9",
"@solidjs/router": "^0.13.5",
"@types/diff": "^5.2.1",
"diff": "^5.2.0",
"solid-headless": "^0.13.1",
"solid-heroicons": "^3.2.4",
"solid-js": "^1.8.15",
"xlsx": "^0.18.5"
"solid-js": "^1.8.17",
"xlsx": "https://cdn.sheetjs.com/xlsx-0.20.2/xlsx-0.20.2.tgz"
}
}

2436
pnpm-lock.yaml generated

File diff suppressed because it is too large Load Diff

View File

@ -5,7 +5,7 @@ import { Link } from "./link"
const Footer: Component<SimpleProps> = ({ className }) => (
<footer class={`container absolute bottom-0 py-5 text-center ${className}`}>
<p>
Kildekode <Link to={"https://git.martials.no/martials/old.martials.no"}>Gitea</Link>
Kildekode <Link to={"https://github.com/h600878/martials.no"}>GitHub</Link>
</p>
</footer>
)