Compare commits
8 Commits
6fec90ea71
...
latest
| Author | SHA1 | Date | |
|---|---|---|---|
| d3622dd422 | |||
| 7c7db7a04e | |||
| 72dd6758c6 | |||
| 15e2f2927b | |||
| 32e1c743da | |||
| 5634aae631 | |||
| b3feb4284c | |||
| 1c3cab6cd7 |
53
.gitea/workflows/ci.yml
Normal file
53
.gitea/workflows/ci.yml
Normal file
@@ -0,0 +1,53 @@
|
|||||||
|
name: Build & Release
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches: [main]
|
||||||
|
tags: ["v*"]
|
||||||
|
pull_request:
|
||||||
|
branches: [main]
|
||||||
|
|
||||||
|
permissions:
|
||||||
|
contents: write
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Checkout
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
|
- name: Setup Node.js
|
||||||
|
uses: actions/setup-node@v4
|
||||||
|
with:
|
||||||
|
node-version: 20
|
||||||
|
|
||||||
|
- name: Install dependencies
|
||||||
|
run: npm ci
|
||||||
|
|
||||||
|
- name: Lint
|
||||||
|
run: npm run lint
|
||||||
|
|
||||||
|
- name: Typecheck
|
||||||
|
run: npm run typecheck
|
||||||
|
|
||||||
|
- name: Build
|
||||||
|
run: npm run build
|
||||||
|
|
||||||
|
- name: Install zip
|
||||||
|
if: github.ref == 'refs/heads/main'
|
||||||
|
run: apt-get update && apt-get install -y zip
|
||||||
|
|
||||||
|
- name: Create release zip
|
||||||
|
if: github.ref == 'refs/heads/main'
|
||||||
|
run: zip -r resume-latest.zip out/
|
||||||
|
|
||||||
|
- name: Create Release
|
||||||
|
if: github.ref == 'refs/heads/main'
|
||||||
|
uses: softprops/action-gh-release@v2
|
||||||
|
with:
|
||||||
|
tag_name: latest
|
||||||
|
name: Latest Build
|
||||||
|
body: Auto-generated from latest commit on main branch
|
||||||
|
files: resume-latest.zip
|
||||||
|
fail_on_unmatched_files: true
|
||||||
@@ -1,4 +1,4 @@
|
|||||||
import { Geist, Geist_Mono, Inter } from "next/font/google"
|
import { Geist_Mono, Inter } from "next/font/google"
|
||||||
|
|
||||||
import "./globals.css"
|
import "./globals.css"
|
||||||
import { ThemeProvider } from "@/components/theme-provider"
|
import { ThemeProvider } from "@/components/theme-provider"
|
||||||
|
|||||||
@@ -8,7 +8,7 @@ import {
|
|||||||
} from "@hugeicons/core-free-icons"
|
} from "@hugeicons/core-free-icons"
|
||||||
import { HugeiconsIcon } from "@hugeicons/react"
|
import { HugeiconsIcon } from "@hugeicons/react"
|
||||||
|
|
||||||
import { AnimatedList, AnimatedListItem } from "@/components/ui/animated-list"
|
import { AnimatedListItem } from "@/components/ui/animated-list"
|
||||||
import { SectionWrapper } from "@/components/section-wrapper"
|
import { SectionWrapper } from "@/components/section-wrapper"
|
||||||
|
|
||||||
interface ExperienceItem {
|
interface ExperienceItem {
|
||||||
|
|||||||
@@ -1,3 +1,4 @@
|
|||||||
|
/* eslint-disable react-hooks/set-state-in-effect */
|
||||||
"use client"
|
"use client"
|
||||||
|
|
||||||
import React, { useEffect, useRef, useState } from "react"
|
import React, { useEffect, useRef, useState } from "react"
|
||||||
|
|||||||
@@ -1,3 +1,4 @@
|
|||||||
|
/* eslint-disable react-hooks/set-state-in-effect */
|
||||||
"use client"
|
"use client"
|
||||||
|
|
||||||
import React, { useEffect, useState } from "react"
|
import React, { useEffect, useState } from "react"
|
||||||
|
|||||||
857
package-lock.json
generated
857
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user