From 7284fac2ea6471c40f1645ff12df5710bf4b183c Mon Sep 17 00:00:00 2001 From: Aaron Fischer Date: Tue, 9 Jan 2024 23:16:38 +0100 Subject: [PATCH] Remove old build workflow --- .forgejo/workflows/build.yaml-disabled | 33 -------------------------- 1 file changed, 33 deletions(-) delete mode 100644 .forgejo/workflows/build.yaml-disabled diff --git a/.forgejo/workflows/build.yaml-disabled b/.forgejo/workflows/build.yaml-disabled deleted file mode 100644 index c63478c..0000000 --- a/.forgejo/workflows/build.yaml-disabled +++ /dev/null @@ -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