Skip to content

Commit 417a13d

Browse files
authored
Merge pull request #8 from AeroFlorian/remove_auto_release
Remove auto Github release
2 parents 5fd4dfd + e87f70b commit 417a13d

File tree

2 files changed

+1
-44
lines changed

2 files changed

+1
-44
lines changed

.github/workflows/publish-to-pypi.yml

-43
Original file line numberDiff line numberDiff line change
@@ -49,46 +49,3 @@ jobs:
4949
- name: Publish distribution 📦 to PyPI
5050
uses: pypa/gh-action-pypi-publish@release/v1
5151

52-
github-release:
53-
name: >-
54-
Sign the Python 🐍 distribution 📦 with Sigstore
55-
and upload them to GitHub Release
56-
needs:
57-
- publish-to-pypi
58-
runs-on: ubuntu-latest
59-
60-
permissions:
61-
contents: write # IMPORTANT: mandatory for making GitHub Releases
62-
id-token: write # IMPORTANT: mandatory for sigstore
63-
64-
steps:
65-
- name: Download all the dists
66-
uses: actions/download-artifact@v4
67-
with:
68-
name: python-package-distributions
69-
path: dist/
70-
- name: Sign the dists with Sigstore
71-
uses: sigstore/[email protected]
72-
with:
73-
inputs: >-
74-
./dist/*.tar.gz
75-
./dist/*.whl
76-
- name: Create GitHub Release
77-
env:
78-
GITHUB_TOKEN: ${{ github.token }}
79-
run: >-
80-
gh release create
81-
'${{ github.ref_name }}'
82-
--repo '${{ github.repository }}'
83-
--notes ""
84-
- name: Upload artifact signatures to GitHub Release
85-
env:
86-
GITHUB_TOKEN: ${{ github.token }}
87-
# Upload to GitHub Release using the `gh` CLI.
88-
# `dist/` contains the built packages, and the
89-
# sigstore-produced signatures and certificates.
90-
run: >-
91-
gh release upload
92-
'${{ github.ref_name }}' dist/**
93-
--repo '${{ github.repository }}'
94-

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
setup(
44
name='PyMsTeamsAdaptiveCard',
5-
version='0.1.9',
5+
version='0.2.0',
66
author='Florian Salaun',
77
author_email='[email protected]',
88
packages=['pyadaptivecard', 'pyadaptivecard.test'],

0 commit comments

Comments
 (0)