Skip to content

Commit 78f83d0

Browse files
committed
Merge branch 'main' of github.com:FahrJo/datanorm
2 parents 225f25c + 35d0990 commit 78f83d0

File tree

1 file changed

+41
-0
lines changed

1 file changed

+41
-0
lines changed

.github/workflows/pypi.yml

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
# This workflow will upload a Python Package using Twine when a release is created
2+
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python#publishing-to-package-registries
3+
4+
# This workflow uses actions that are not certified by GitHub.
5+
# They are provided by a third-party and are governed by
6+
# separate terms of service, privacy policy, and support
7+
# documentation.
8+
9+
name: PIP Publish
10+
11+
on:
12+
release:
13+
types: [published]
14+
15+
permissions:
16+
contents: read
17+
18+
jobs:
19+
deploy:
20+
21+
runs-on: ubuntu-latest
22+
# Specifying a GitHub environment is optional, but strongly encouraged
23+
environment: release
24+
permissions:
25+
# IMPORTANT: this permission is mandatory for trusted publishing
26+
id-token: write
27+
28+
steps:
29+
- uses: actions/checkout@v3
30+
- name: Set up Python
31+
uses: actions/setup-python@v3
32+
with:
33+
python-version: '3.x'
34+
- name: Install dependencies
35+
run: |
36+
python -m pip install --upgrade pip
37+
pip install build
38+
- name: Build package
39+
run: python -m build
40+
- name: Publish package
41+
uses: pypa/gh-action-pypi-publish@27b31702a0e7fc50959f5ad993c78deac1bdfc29

0 commit comments

Comments
 (0)