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: docs/actions-go.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -73,9 +73,9 @@ The runtime `action-golang-v1.11` accepts:
73
73
- executable binaries in Linux ELF executable compiled for the AMD64 architecture
74
74
- zip files containing a binary executable named `exec` at the top level, again a Linux ELF executable compiled for the AMD64 architecture
75
75
- a single source file in Go, that will be compiled
76
-
- a zip file not containing in the top level a binary file `exec`, it will be interpreted as a collection of zip files, and compiled
76
+
- a zip file not containing in the top level a binary file `exec`, it will be interpreted as a collection of source files in Go, and compiled
77
77
78
-
You can create a binary in the correct format on any GO platform cross-compiling with `GOOS=Linux` and `GOARCH=amd64`. However it is recommended you use the compiler embedded in the Docker image for this purpose using the precompilation feature, as described below.
78
+
You can create a binary in the correct format on any Go platform cross-compiling with `GOOS=Linux` and `GOARCH=amd64`. However it is recommended you use the compiler embedded in the Docker image for this purpose using the precompilation feature, as described below.
0 commit comments