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 0e8c6e4 commit 3f3ef49Copy full SHA for 3f3ef49
.github/workflows/release.yml
@@ -14,3 +14,25 @@ jobs:
14
steps:
15
- name: Validate Tag
16
id: validate-tag
17
+
18
+ - name: Create Release
19
+ id: create_release
20
+ uses: actions/create-release@v1
21
+ env:
22
+ GITHUB_TOKEN: ${{ secrets.RELEASE_TOKEN }}
23
+ with:
24
+ tag_name: v${{ github.ref }}
25
+ release_name: Release v${{ github.ref }}
26
+ draft: false
27
+ prerelease: false
28
29
+ - name: Upload Asset
30
+ id: upload_asset
31
+ uses: actions/upload-release-asset@v1
32
33
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
34
35
+ upload_url: ${{ steps.create_release.outputs.upload_url }}
36
+ asset_path: ${{ github.workspace }}/lib/dls/serialport.dll
37
+ asset_name: serialport.dll
38
+ asset_content_type: application/octet-stream
0 commit comments