Compare commits

...

3 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
3 changed files with 46 additions and 60 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

@ -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>
)