From ad27cd8e9dfd85ce52a2d5d6293755354e6efa91 Mon Sep 17 00:00:00 2001 From: "Waylon S. Walker" Date: Wed, 14 Jun 2023 20:30:52 -0500 Subject: [PATCH] add release workflow --- .github/workflows/release.yml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 .github/workflows/release.yml diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml new file mode 100644 index 0000000..a179c48 --- /dev/null +++ b/.github/workflows/release.yml @@ -0,0 +1,24 @@ +name: Release +on: + workflow_dispatch: + push: + branches: + - "*" +jobs: + release: + strategy: + matrix: + os: [ubuntu-latest, windows-latest, macos-latest] + runs-on: ${{ matrix.os }} + steps: + - uses: actions/checkout@v3 + - uses: actions/setup-python@v4 + with: + python-version: "3.10" + - run: pip install hatch + - run: hatch run build + - name: Step 3 - Use the Upload Artifact GitHub Action + uses: actions/upload-artifact@v2 + with: + name: lsm-${{ matrix.os }} + path: dist