From ed057d16934a010de1b5aadc341533a3142f66d3 Mon Sep 17 00:00:00 2001 From: tobid7 Date: Fri, 8 Mar 2024 17:43:39 +0100 Subject: [PATCH] Remove as causes useless errors --- .gitea/workflows/main.yaml | 41 +++++++++++++++++--------------------- 1 file changed, 18 insertions(+), 23 deletions(-) diff --git a/.gitea/workflows/main.yaml b/.gitea/workflows/main.yaml index 85961a5..314f6ba 100644 --- a/.gitea/workflows/main.yaml +++ b/.gitea/workflows/main.yaml @@ -1,23 +1,18 @@ -name: Gitea Actions Demo -run-name: Build-Test bannertool -on: [push] - -jobs: - Build: - runs-on: ubuntu-latest - steps: - - name: Checkout - uses: actions/checkout@v2 - - name: Install Tools - run: | - apt-get update -y - apt-get install build-essential cmake -y - - name: Build - run: | - cmake -B cmake-build-debug - cmake --build cmake-build-debug - - name: upload artifact - uses: actions/upload-artifact@v2 - with: - name: bannertool - path: cmake-build-debug/bannertool \ No newline at end of file +name: Gitea Actions Demo +run-name: Build-Test bannertool +on: [push] + +jobs: + Build: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v2 + - name: Install Tools + run: | + apt-get update -y + apt-get install build-essential cmake -y + - name: Build + run: | + cmake -B cmake-build-debug + cmake --build cmake-build-debug \ No newline at end of file