Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
cstub committed Jan 14, 2025
1 parent cc32246 commit 2ca507d
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 3 deletions.
12 changes: 10 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
name: Publish Package

on: workflow_dispatch #[push, pull_request]
on: [push, pull_request]

jobs:
build-and-publish:
release-build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
with:
Expand All @@ -29,3 +30,10 @@ jobs:
run: |
poetry build
ls -la dist/
- name: Upload distributions
uses: actions/upload-artifact@v4
with:
name: release-dists
path: dist/
retention-days: 1
2 changes: 1 addition & 1 deletion .github/workflows/test_package.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: Test Package Installation

on: [push, pull_request]
on: workflow_dispatch #[push, pull_request]

jobs:
build:
Expand Down

0 comments on commit 2ca507d

Please sign in to comment.