Skip to content

Commit

Permalink
Adding build workflow for Linux (x86_64 only).
Browse files Browse the repository at this point in the history
  • Loading branch information
wjl committed Oct 19, 2024
1 parent f05d705 commit a5e420d
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit a5e420d

Please sign in to comment.