We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 83e59b0 commit 8c60046Copy full SHA for 8c60046
2 files changed
.github/workflows/main.yml
@@ -1,6 +1,15 @@
1
-name: Main
+name: Test
2
3
-on: [push]
+on:
4
+ push:
5
+ paths-ignore:
6
+ - '**/README.md'
7
+ - '.*'
8
+ pull_request:
9
+ types: [opened, synchronize]
10
+
11
+permissions:
12
+ contents: read
13
14
defaults:
15
run:
.github/workflows/publish.yml
@@ -1,8 +1,16 @@
name: Upload Python Package
on:
- release:
- types: [published]
+ tags:
+ - 'v*.*.*'
+defaults:
+ run:
+ shell: bash
+ contents: write
jobs:
16
deploy:
0 commit comments