From 5798cfe17b14ed60396093e799dffa788ef302f7 Mon Sep 17 00:00:00 2001 From: Kyle Smith Date: Fri, 7 Jun 2024 07:41:23 -0400 Subject: [PATCH 1/2] Fri Jun 7 07:41:23 EDT 2024 Removed matrix for release --- .github/workflows/create-release.yml | 4 ---- 1 file changed, 4 deletions(-) diff --git a/.github/workflows/create-release.yml b/.github/workflows/create-release.yml index 809d38c..078b3a9 100644 --- a/.github/workflows/create-release.yml +++ b/.github/workflows/create-release.yml @@ -8,10 +8,6 @@ on: jobs: create-release: runs-on: ubuntu-latest - strategy: - fail-fast: false - matrix: - python-version: [ "3.10", "3.11" ] steps: - uses: actions/checkout@v4 - name: 'Get Version' From d826eaff100a0c6d788b750cc18f5c4f18e27e83 Mon Sep 17 00:00:00 2001 From: Kyle Smith Date: Fri, 7 Jun 2024 07:43:47 -0400 Subject: [PATCH 2/2] Fri Jun 7 07:43:47 EDT 2024 Updated github action for main --- .github/workflows/create-release.yml | 8 +++++--- package.json | 3 ++- 2 files changed, 7 insertions(+), 4 deletions(-) diff --git a/.github/workflows/create-release.yml b/.github/workflows/create-release.yml index 078b3a9..0abb00f 100644 --- a/.github/workflows/create-release.yml +++ b/.github/workflows/create-release.yml @@ -14,7 +14,7 @@ jobs: id: version uses: 'cloudposse/github-action-jq@main' with: - input: 'properties.json' + input: 'package.json' # JQ query string script: '.version' # Output raw strings, not JSON texts @@ -32,5 +32,7 @@ jobs: ref: "refs/tags/${{ steps.set-tag.outputs.tag_name }}", sha: context.sha }) - - name: Build Package - run: python -m build \ No newline at end of file + - name: Build Package SDist + run: python -m build --sdist + - name: Build Package Wheel + run: python -m build --wheel \ No newline at end of file diff --git a/package.json b/package.json index 2b4401a..1567374 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,7 @@ { "name": "geese", "version": "1.1.2", + "description": "This File is provided for 'active development' (yarn watch)", "watch" : { "execute": { "patterns": [ @@ -10,7 +11,7 @@ } }, "scripts": { - "execute": "./build.sh", + "execute": "yarn sdist", "watch": "npm-watch", "build": "yarn wheel && yarn sdist", "wheel": "python3 -m build --wheel",