💚 Update workflow for forgejo instance
Some checks failed
Deploy website / build-and-deploy (push) Failing after 6s

Signed-off-by: SindreKjelsrud <sindre@kjelsrud.dev>
This commit is contained in:
Sid 2024-12-04 17:06:10 +01:00
parent 2c0141b609
commit e8eaddda84
Signed by: sidski
GPG key ID: D2BBDF3EDE6BA9A6
4 changed files with 42 additions and 41 deletions

View file

@ -0,0 +1,16 @@
name: Deploy website
on:
push:
branches: [main]
paths-ignore:
- 'README.md' # Ignore changes to README.md
jobs:
build-and-deploy:
runs-on: host
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Run docker-compose
run: docker compose up -d --build

View file

@ -1,41 +0,0 @@
name: Deploy website
on:
push:
branches: [ main ]
paths-ignore:
- 'README.md' # Ignore changes to README.md
# Allows you to run this workflow manually from the Actions tab on GitHub.
workflow_dispatch:
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: '21'
- name: Install pnpm
run: npm install -g @pnpm/exe
- name: Install dependencies
run: pnpm install
- name: Build Astro website
run: pnpm build
- name: Rsync files
uses: burnett01/rsync-deployments@5.2
with:
switches: -avzr --delete
path: dist/
remote_path: /var/www/kjelsrud.dev/
remote_host: ${{ secrets.HOST }}
remote_user: ${{ secrets.USER }}
remote_key: ${{ secrets.KEY }}
remote_port: ${{ secrets.PORT }}

18
Dockerfile Normal file
View file

@ -0,0 +1,18 @@
FROM node:lts-alpine AS build
WORKDIR /app
RUN npm install -g pnpm
COPY . /app
RUN pnpm install
RUN pnpm run build
FROM caddy:alpine
COPY --from=build /app/dist /usr/share/caddy
EXPOSE 4321
CMD ["caddy", "file-server", "--root", "/usr/share/caddy", "--listen", ":4321"]

8
docker-compose.yml Normal file
View file

@ -0,0 +1,8 @@
services:
web:
restart: always
build:
context: .
dockerfile: Dockerfile
ports:
- "4321:4321"