From 8278bc94450c07fe75f90e684e307a337d7ffb5e Mon Sep 17 00:00:00 2001 From: Jarno Rankinen Date: Thu, 7 Mar 2024 23:03:33 +0200 Subject: [PATCH] Automatic build action, take 1 --- .github/workflows/build.yaml | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 .github/workflows/build.yaml diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml new file mode 100644 index 0000000..a9ababc --- /dev/null +++ b/.github/workflows/build.yaml @@ -0,0 +1,28 @@ +name: Build release binaries + +on: + push: + tags: + - "*" + workflow_dispatch: + + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v2 + - name: Setup Go + uses: actions/setup-go@v2 + with: + go-version: '1.18.0' + + # Install all the dependencies + - name: Install dependencies + run: go version + + + # Run build of the application + - name: Build x86_64 + run: ./build.sh \ No newline at end of file