projector/.gitea/workflows/build.yml
Workflow config file is invalid. Please check your config file: yaml: unmarshal errors: line 18: mapping key "run" already defined at line 17

23 lines
518 B
YAML
Executable File

name: gobuild
on: [push]
env:
BUILD_TYPE: Release
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Clone The Repo
- uses: actions/checkout@v2
- name: Install Golang Essentials
run: wget https://go.dev/dl/go1.22.5.linux-amd64.tar.gz && rm -rf /usr/local/go && tar -C /usr/local -xzf go1.22.5.linux-amd64.tar.gz && export PATH=$PATH:/usr/local/go/bin && go version
run:
mkdir ./build
go mod tidy
go build -a -V -o ./build/ .