Compare commits
3 commits
bf599c58c3
...
25aa5fd880
| Author | SHA1 | Date | |
|---|---|---|---|
| 25aa5fd880 | |||
| 1a01baffb3 | |||
| f26a1096a1 |
3 changed files with 114 additions and 69 deletions
|
|
@ -1,69 +1,70 @@
|
|||
name: Build and Deploy Go App
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- master
|
||||
- cicd
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout code
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- uses: actions/setup-go@v6
|
||||
with:
|
||||
go-version: '^1.25'
|
||||
|
||||
- name: Set up Docker Buildx
|
||||
uses: docker/setup-buildx-action@v3
|
||||
|
||||
# Build application
|
||||
- name: Build Go app
|
||||
run: |
|
||||
cd modules/server
|
||||
go mod tidy
|
||||
go build -o nyanimedb .
|
||||
|
||||
- name: Upload built application to artifactory
|
||||
uses: actions/upload-artifact@v3
|
||||
with:
|
||||
name: nyanimedb
|
||||
path: modules/server/nyanimedb
|
||||
|
||||
# Build Docker image
|
||||
- name: Login to Docker Hub
|
||||
uses: docker/login-action@v3
|
||||
with:
|
||||
registry: ${{ vars.REGISTRY }}
|
||||
username: ${{ secrets.REGISTRY_USERNAME }}
|
||||
password: ${{ secrets.REGISTRY_TOKEN }}
|
||||
|
||||
- name: Build and push
|
||||
uses: docker/build-push-action@v6
|
||||
with:
|
||||
push: true
|
||||
tags: meowgit.nekoea.red/nihonium/nyanimedb:latest
|
||||
|
||||
deploy:
|
||||
runs-on: self-hosted
|
||||
needs: build
|
||||
env:
|
||||
POSTGRES_USER: ${{ secrets.POSTGRES_USER }}
|
||||
POSTGRES_PASSWORD: ${{ secrets.POSTGRES_PASSWORD }}
|
||||
POSTGRES_DB: nyanimedb
|
||||
POSTGRES_PORT: 5432
|
||||
POSTGRES_VERSION: 18
|
||||
LOG_LEVEL: ${{ vars.LOG_LEVEL }}
|
||||
|
||||
steps:
|
||||
- name: Checkout code
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Deploy containers locally
|
||||
run: |
|
||||
cd deploy
|
||||
docker compose down || true
|
||||
docker compose up -d
|
||||
name: Build and Deploy Go App
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- master
|
||||
- cicd
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/setup-go@v6
|
||||
with:
|
||||
go-version: '^1.25'
|
||||
|
||||
- name: Set up Docker Buildx
|
||||
uses: docker/setup-buildx-action@v3
|
||||
|
||||
- name: Checkout code
|
||||
uses: actions/checkout@v4
|
||||
|
||||
# Build application
|
||||
- name: Build Go app
|
||||
run: |
|
||||
cd modules/server
|
||||
go mod tidy
|
||||
go build -o nyanimedb .
|
||||
|
||||
- name: Upload built application to artifactory
|
||||
uses: actions/upload-artifact@v3
|
||||
with:
|
||||
name: nyanimedb
|
||||
path: modules/server/nyanimedb
|
||||
|
||||
# Build Docker image
|
||||
- name: Login to Docker Hub
|
||||
uses: docker/login-action@v3
|
||||
with:
|
||||
registry: ${{ vars.REGISTRY }}
|
||||
username: ${{ secrets.REGISTRY_USERNAME }}
|
||||
password: ${{ secrets.REGISTRY_TOKEN }}
|
||||
|
||||
- name: Build and push
|
||||
uses: docker/build-push-action@v6
|
||||
with:
|
||||
file: Dockerfiles/Dockerfile-server
|
||||
push: true
|
||||
tags: meowgit.nekoea.red/nihonium/nyanimedb:latest
|
||||
|
||||
deploy:
|
||||
runs-on: self-hosted
|
||||
needs: build
|
||||
env:
|
||||
POSTGRES_USER: ${{ secrets.POSTGRES_USER }}
|
||||
POSTGRES_PASSWORD: ${{ secrets.POSTGRES_PASSWORD }}
|
||||
POSTGRES_DB: nyanimedb
|
||||
POSTGRES_PORT: 5432
|
||||
POSTGRES_VERSION: 18
|
||||
LOG_LEVEL: ${{ vars.LOG_LEVEL }}
|
||||
|
||||
steps:
|
||||
- name: Checkout code
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Deploy containers locally
|
||||
run: |
|
||||
cd deploy
|
||||
docker compose down || true
|
||||
docker compose up -d
|
||||
|
|
|
|||
24
Dockerfiles/Dockerfile_forgejo-runner
Normal file
24
Dockerfiles/Dockerfile_forgejo-runner
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
FROM node:20-bookworm
|
||||
|
||||
ENV DEBIAN_FRONTEND=noninteractive
|
||||
|
||||
RUN apt-get update && \
|
||||
apt-get install -y \
|
||||
ca-certificates \
|
||||
curl \
|
||||
gnupg \
|
||||
lsb-release \
|
||||
sudo \
|
||||
software-properties-common && \
|
||||
rm -rf /var/lib/apt/lists/*
|
||||
|
||||
RUN mkdir -p /etc/apt/keyrings && \
|
||||
curl -fsSL https://download.docker.com/linux/debian/gpg | gpg --dearmor -o /etc/apt/keyrings/docker.gpg
|
||||
|
||||
RUN echo \
|
||||
"deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/keyrings/docker.gpg] https://download.docker.com/linux/debian \
|
||||
$(lsb_release -cs) stable" | tee /etc/apt/sources.list.d/docker.list > /dev/null
|
||||
|
||||
RUN apt-get update && \
|
||||
apt-get install -y docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin && \
|
||||
rm -rf /var/lib/apt/lists/*
|
||||
20
Dockerfiles/Dockerfile_server
Normal file
20
Dockerfiles/Dockerfile_server
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
FROM ubuntu:22.04
|
||||
|
||||
WORKDIR /app
|
||||
COPY --chmod=755 nyanimedb /app
|
||||
COPY templates /app/templates
|
||||
EXPOSE 8080
|
||||
ENTRYPOINT ["/app/nyanimedb"]
|
||||
|
||||
# FROM golang:1.25 AS builder
|
||||
|
||||
# ARG VERSION=dev
|
||||
|
||||
# WORKDIR /go/src/app
|
||||
# COPY main.go .
|
||||
# RUN go build -o main -ldflags=-X=main.version=${VERSION} main.go
|
||||
|
||||
# FROM debian:buster-slim
|
||||
# COPY --from=builder /go/src/app/main /go/bin/main
|
||||
# ENV PATH="/go/bin:${PATH}"
|
||||
# CMD ["main"]
|
||||
Loading…
Add table
Add a link
Reference in a new issue