Compare commits

...

4 Commits

Author SHA1 Message Date
Martin Berg Alstad
e91dee5059 Updated link to source code to point to gitea
All checks were successful
Deploy / Build (push) Successful in 3m47s
Deploy / Deploy (push) Successful in 55s
2024-09-29 11:40:17 +02:00
Martin Berg Alstad
0d62eb876a Removed node and pnpm setups. Updated checkout to v4
All checks were successful
Deploy / Build (push) Successful in 3m0s
Deploy / Deploy (push) Successful in 52s
2024-09-29 11:27:37 +02:00
Martin Berg Alstad
af1c2f8bb2 Rewritten github actions script to gitea actions
Some checks failed
Deploy / Build (push) Failing after 2m54s
Deploy / Deploy (push) Has been skipped
2024-09-29 11:10:37 +02:00
Martin Berg Alstad
06ce4eb784 SimpleAnalytics 2024-06-19 13:28:33 +02:00
6 changed files with 54 additions and 62 deletions

View File

@ -0,0 +1,45 @@
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

View File

@ -1,59 +0,0 @@
name: Deploy
on:
pull_request:
push:
branches:
- master
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v3
- uses: pnpm/action-setup@v2
with:
version: 8
- name: Setup Node
uses: actions/setup-node@v3
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@v3
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@v3
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">
<includedPredefinedLibrary name="Node.js Core" />
<file url="PROJECT" libraries="{latest}" />
</component>
</project>

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

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

View File

@ -7,9 +7,14 @@
<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.</noscript>
<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>
<div id="root"></div>
<script src="/src/app.tsx" type="module"></script>

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://github.com/h600878/martials.no"}>GitHub</Link>
Kildekode <Link to={"https://git.martials.no/martials/old.martials.no"}>Gitea</Link>
</p>
</footer>
)