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 183a10d + 7b33313 commit 2d451e1Copy full SHA for 2d451e1
.github/workflows/npm-publish-github-packages.yml
@@ -0,0 +1,23 @@
1
+# This workflow will run tests using node and then publish a package to GitHub Packages when a release is created
2
+# For more information see: https://docs.github.com/en/actions/publishing-packages/publishing-nodejs-packages
3
+
4
+name: "tagged-release"
5
6
+on:
7
+ push:
8
+ tags:
9
+ - "v*"
10
11
+jobs:
12
+ tagged-release:
13
+ name: "Tagged Release"
14
+ runs-on: ubuntu-latest
15
+ steps:
16
+ - uses: "marvinpinto/action-automatic-releases@latest"
17
+ with:
18
+ repo_token: ${{ secrets.GITHUB_TOKEN }}
19
+ prerelease: false
20
+ files: |
21
+ BlockBlobReader/target/*
22
+ EventHubs/target/logs_build/*
23
+ EventHubs/target/metrics_build/*
0 commit comments