feat: test upload artifact
Some checks failed
Build and Deploy Go App / build (push) Failing after 7m22s
Build and Deploy Go App / deploy (push) Has been skipped

This commit is contained in:
nihonium 2025-10-08 17:25:15 +03:00
parent fcaa7dff04
commit 01d7683aed
Signed by: nihonium
GPG key ID: 0251623741027CFC

View file

@ -12,6 +12,10 @@ jobs:
steps:
- name: Checkout code
uses: actions/checkout@v4
- uses: actions/setup-go@v6
with:
go-version: '^1.25'
- name: Build Go app
run: |
@ -19,6 +23,11 @@ jobs:
go mod tidy
go build -o nyanimedb .
- uses: actions/upload-artifact@v4
with:
name: nyanimedb
path: nyanimedb
- name: Build Docker image
run: |
cd modules/server