Files
Sneedchat-Discord-Bridge-Go/.gitea/workflows/build.yml
Salastil f265393ed8
Some checks failed
Build Go Project / build (push) Failing after 7s
n/a
2025-11-16 13:53:01 -05:00

30 lines
563 B
YAML

name: Build Go Project
on:
push:
branches: ["master"]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: "1.22"
- name: Build
run: |
mkdir -p dist
go build -o dist/Sneedchat-Discord-Bridge .
- name: Upload artifact
uses: https://gitea.com/gitea/actions/upload-artifact@main
with:
name: sneedchatdiscordbridge
path: dist/*