naturalett commented on a change in pull request #12:
URL: https://github.com/apache/incubator-liminal/pull/12#discussion_r555903161
##########
File path: .github/workflows/publish-package.yml
##########
@@ -0,0 +1,31 @@
+name: Publish package
+
+on:
+ push:
+ tags:
+ - '**'
+
+jobs:
+ publish-package:
+ name: Publish package
+ runs-on: ubuntu-latest
+ steps:
+ - uses: actions/checkout@v1
+ - name: Set env
+ run: echo "LIMINAL_VERSION=${GITHUB_REF#refs/*/}" >> $GITHUB_ENV
+ - name: Set up Python
Review comment:
The trigger starts by git tag.
This is my condition:
```
on:
push:
tags:
- '**'
```
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]