We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7091d5c commit 94ff438Copy full SHA for 94ff438
.github/workflows/publish-unitypackage-release-on-push-tag.yml
@@ -56,15 +56,19 @@ jobs:
56
steps:
57
- uses: actions/checkout@v2
58
59
+ # https://github.com/battila7/get-version-action
60
+ - id: get_version
61
+ uses: battila7/get-version-action@v2
62
+
63
- run: |
64
find **/*.meta
65
find **/*.meta > metalist
66
67
# https://github.com/pCYSl5EDgo/create-unitypackage
68
- uses: pCYSl5EDgo/create-unitypackage@master
69
with:
- package-path: ${{ github.repository }}.unitypackage
- include-files: metaList
70
+ package-path: ${{ github.repository }}-${{ steps.get_version.outputs.version }}.unitypackage
71
+ include-files: metalist
72
73
- uses: actions/upload-artifact@master
74
0 commit comments