Skip to content

Commit

Permalink
patch fix workflow:publish python package
Browse files Browse the repository at this point in the history
  • Loading branch information
visualDust committed Nov 27, 2023
1 parent a998b7b commit 19b6f6f
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 0 deletions.
35 changes: 35 additions & 0 deletions .github/workflows/maunal-build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
# This workflow will upload a Python Package using Twine when a release is created
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python#publishing-to-package-registries

# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.

name: Manually Build Python Package

on:
workflow_dispatch:

permissions:
contents: read

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v4
with:
node-version: 18
cache: "yarn"
cache-dependency-path: "neetbox/frontend/yarn.lock"
- name: setup yarn
run: corepack enable
working-directory: neetbox/frontend
- run: yarn install --frozen-lockfile
working-directory: neetbox/frontend
- run: yarn build
working-directory: neetbox/frontend
- name: Build and publish to pypi
run: ls ${{github.workspace}}
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ classifiers = [
]

exclude = ["neetbox/frontend"]
include = ["neetbox/frontend_dist"]

# [[tool.poetry.source]]
# name = "pypi"
Expand Down

0 comments on commit 19b6f6f

Please sign in to comment.