You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/workflows/release.yml
+13-14Lines changed: 13 additions & 14 deletions
Original file line number
Diff line number
Diff line change
@@ -17,7 +17,7 @@ jobs:
17
17
run: make clean release-unsigned
18
18
- name: Create Release
19
19
id: create_release
20
-
uses: actions/create-release@v1.0.0
20
+
uses: actions/create-release@v1
21
21
env:
22
22
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
23
23
with:
@@ -27,17 +27,16 @@ jobs:
27
27
prerelease: false
28
28
29
29
#
30
-
# Note: I am changing the release process due to Apple Notarization requirements,
30
+
# Note: this release process does not comply with the Apple Notarization requirements,
31
31
# see https://developer.apple.com/documentation/xcode/notarizing_macos_software_before_distribution
32
-
#
33
-
#
34
-
# - name: Upload Release Asset
35
-
# id: upload-release-asset
36
-
# uses: actions/upload-release-asset@v1.0.1
37
-
# env:
38
-
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
39
-
# with:
40
-
# upload_url: ${{ steps.create_release.outputs.upload_url }} # This pulls from the CREATE RELEASE step above, referencing it's ID to get its outputs object, which include a `upload_url`. See this blog post for more info: https://jasonet.co/posts/new-features-of-github-actions/#passing-data-to-future-steps
41
-
# asset_path: ./BeoplayRemoteGUI.dmg
42
-
# asset_name: BeoplayRemoteGUI.dmg
43
-
# asset_content_type: application/octet-stream
32
+
33
+
- name: Upload Release Asset
34
+
id: upload-release-asset
35
+
uses: actions/upload-release-asset@v1
36
+
env:
37
+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
38
+
with:
39
+
upload_url: ${{ steps.create_release.outputs.upload_url }} # This pulls from the CREATE RELEASE step above, referencing it's ID to get its outputs object, which include a `upload_url`. See this blog post for more info: https://jasonet.co/posts/new-features-of-github-actions/#passing-data-to-future-steps
0 commit comments