You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# 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: Upload Python Package
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
+
23
+
steps:
24
+
- run: echo "🎉 The job was automatically triggered by a ${{ github.event_name }} event."
25
+
- run: echo "🐧 This job is now running on a ${{ runner.os }} server hosted by GitHub!"
26
+
- run: echo "🔎 The name of your branch is ${{ github.ref }} and your repository is ${{ github.repository }}."
27
+
- run: echo "Building wheel from tag ${{ github.ref_name }}"
0 commit comments