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/publish-go.yml
+4-1Lines changed: 4 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -52,7 +52,10 @@ jobs:
52
52
echo -e "package prism\n\n// MajorVersion - Major component of the API version\nconst MajorVersion = $MAJOR\n\n// MinorVersion - Minor component of the API version\nconst MinorVersion = $MINOR" > ./api/org/polypheny/prism/version.go
53
53
54
54
- name: Package Generated Files
55
-
run: tar -czvf go-api-files-${{ env.VERSION }}.tar.gz ./api/org/polypheny/prism
55
+
run: |
56
+
mv -v ./api/org/polypheny/* ./api/
57
+
rm -rf ./api/org
58
+
tar -czvf go-api-files-${{ env.VERSION }}.tar.gz ./api
0 commit comments