Skip to content

Commit

Permalink
Quick fix to Publish action
Browse files Browse the repository at this point in the history
  • Loading branch information
strohganoff committed Nov 4, 2024
1 parent 5f001c0 commit 0f24dac
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
name: Publish

on:
release:
types: [published]
Expand All @@ -8,6 +10,11 @@ permissions:
jobs:
release-build:
runs-on: ubuntu-latest
environment:
name: pypi
url: https://pypi.org/p/streamdeck-plugin-sdk
permissions:
id-token: write
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
Expand All @@ -18,4 +25,4 @@ jobs:
python -m pip install build
python -m build
- name: Publish release distributions to PyPI
uses: pypa/gh-action-pypi-publish@6f7e8d9c0b1a2c3d4e5f6a7b8c9d0e1f2a3b4c5d
uses: pypa/gh-action-pypi-publish@v1.11.0
1 change: 1 addition & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
name: Tests

on:
push:
branches: [main]
Expand Down

0 comments on commit 0f24dac

Please sign in to comment.