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.
2 parents 91d0972 + 4308ed0 commit f64fa7eCopy full SHA for f64fa7e
1 file changed
.github/workflows/build-plugin.yml
@@ -41,6 +41,15 @@ jobs:
41
run: |
42
mv plugin/build/distributions/*.zip plugin/build/distributions/yamp_plugin_${{ steps.get_version.outputs.version }}.zip
43
44
+ - name: Create tag
45
+ run: |
46
+ git config --global user.name 'github-actions'
47
+ git config --global user.email 'github-actions@github.com'
48
+ git tag v${{ steps.get_version.outputs.version }}
49
+ git push origin v${{ steps.get_version.outputs.version }}
50
+ env:
51
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
52
+
53
- name: Create GitHub Release
54
id: create_release
55
uses: softprops/action-gh-release@v2
0 commit comments