From 039101e6d6b4e56cf5cb81aab5762fcf0180d07c Mon Sep 17 00:00:00 2001 From: Alexander Bejarano Date: Fri, 1 Nov 2024 23:14:00 +0100 Subject: [PATCH] Create linux-x64-build.yml add github actions for linux .deb --- .github/workflows/linux-x64-build.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .github/workflows/linux-x64-build.yml diff --git a/.github/workflows/linux-x64-build.yml b/.github/workflows/linux-x64-build.yml new file mode 100644 index 0000000..13c97d0 --- /dev/null +++ b/.github/workflows/linux-x64-build.yml @@ -0,0 +1,22 @@ +name: linux 64 bit build +on: + workflow_dispatch: + push: +jobs: + build: + runs-on: ubuntu-22.04 + steps: + - name: Get code + uses: actions/checkout@v4 + - name: Install dependencies + run: | + sudo apt install wireguard-tools libgtk-3-dev libayatana-appindicator3-dev golang-go + - name: Compile + run: | + ./package.sh + - name: Artifacts + uses: actions/upload-artifact@v4 + with: + name: artifacts + path: | + build