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
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -49,10 +49,10 @@ jobs:
49
49
# Assuming VERSION is in the format 'major.minor'
50
50
IFS='.' read -r MAJOR MINOR <<< "${{ env.VERSION }}"
51
51
# Create a Go file with major and minor constants
52
-
echo -e "package api\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/version.go
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
55
+
run: tar -czvf go-api-files-${{ env.VERSION }}.tar.gz ./api/org/polypheny/prism
0 commit comments