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 14b82a1 commit bde89f5Copy full SHA for bde89f5
.github/workflows/ci.yml
@@ -130,4 +130,23 @@ jobs:
130
name: dotnet-bindings
131
path: |
132
ffi/bindings/dotnet/nupkg/rodbus*.nupkg
133
- ffi/bindings/dotnet/nupkg/rodbus*.snupkg
+ ffi/bindings/dotnet/nupkg/rodbus*.snupkg
134
+ # Create Github Release
135
+ release:
136
+ needs: [packaging]
137
+ runs-on: ubuntu-latest
138
+ if: startsWith(github.ref, 'refs/tags/')
139
+ steps:
140
+ - name: Download all artifacts
141
+ uses: actions/download-artifact@v3
142
+ with:
143
+ path: artifacts
144
+ - name: Create GitHub release
145
+ uses: softprops/action-gh-release@v1
146
147
+ draft: true
148
+ files: |
149
+ artifacts/*
150
+ artifacts/**/*
151
+ env:
152
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
0 commit comments