From a5e420d6205677efc36cfa7ff75fbc8f5355b29e Mon Sep 17 00:00:00 2001 From: "Wesley J. Landaker" Date: Fri, 18 Oct 2024 22:19:31 -0600 Subject: [PATCH] Adding build workflow for Linux (x86_64 only). --- .github/workflows/build.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .github/workflows/build.yml diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 0000000..cb8ef82 --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,23 @@ +name: Build + +on: + push: + branches: + - master + +jobs: + build: + runs-on: ubuntu-20.04 + + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-python@v5 + with: + python-version: "3.12" + cache: "pip" + - run: | + ./build.sh + - uses: actions/upload-artifact@v4 + with: + name: tray-timer.linux.x86_64 + path: dist/tray-timer