Remove old build workflow
This commit is contained in:
parent
3cb3bca3d9
commit
7284fac2ea
1 changed files with 0 additions and 33 deletions
|
@ -1,33 +0,0 @@
|
|||
on:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
jobs:
|
||||
build:
|
||||
runs-on: docker
|
||||
steps:
|
||||
- name: Install dependencies
|
||||
run: |
|
||||
apt-get update
|
||||
apt-get install -y git
|
||||
|
||||
- name: Checkout sourcecode
|
||||
uses: actions/checkout@v3
|
||||
|
||||
- name: Setup go build environment
|
||||
uses: actions/setup-go@v4
|
||||
with:
|
||||
go-version-file: ./go.mod
|
||||
|
||||
- name: Generate space-api types and build binary
|
||||
run: |
|
||||
apt-get install -y wget bash
|
||||
./generate-spaceapi-types.sh
|
||||
go build -o okospaceapi ./cmd/server.go
|
||||
|
||||
# TODO: Disabled for now because we do not use it
|
||||
#- name: Upload binary as an artefact
|
||||
# uses: actions/upload-artifact@v3
|
||||
# with:
|
||||
# name: okospaceapi
|
||||
# path: okospaceapi
|
Loading…
Reference in a new issue