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 cbeb314 commit bdfd976Copy full SHA for bdfd976
.github/workflows/go.yml
@@ -99,13 +99,23 @@ jobs:
99
with:
100
merge-multiple: true
101
102
+ - name: List downloaded files
103
+ run: |
104
+ echo "Files in current directory:"
105
+ ls -la
106
+ echo "Archive files:"
107
+ find . -name "*.zip" -o -name "*.tar.gz" | sort
108
+
109
- name: Create Release
110
uses: softprops/action-gh-release@v1
111
112
tag_name: ${{ steps.version.outputs.tag }}
113
files: |
- *.zip
- *.tar.gz
114
+ gomail_linux_amd64.tar.gz
115
+ gomail_linux_arm64.tar.gz
116
+ gomail_darwin_amd64.tar.gz
117
+ gomail_darwin_arm64.tar.gz
118
+ gomail.exe_windows_amd64.zip
119
draft: false
120
prerelease: true
121
generate_release_notes: true
0 commit comments