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: user/deployment/releases.md
+13
Original file line number
Diff line number
Diff line change
@@ -43,6 +43,19 @@ You can also authenticate with your GitHub username and password using the `user
43
43
on:
44
44
tags: true
45
45
46
+
### Deploying to GitHub Enterprise
47
+
48
+
If you wish to upload assets to a GitHub Enterprise repository, you must override the `$OCTOKIT_API_ENDPOINT` environment variable with your GitHub Enterprise API endpoint:
49
+
```
50
+
http(s)://"GITHUB ENTERPRISE HOSTNAME"/api/v3/
51
+
```
52
+
53
+
You can configure this in [Repository Settings](https://docs.travis-ci.com/user/environment-variables/#Defining-Variables-in-Repository-Settings) or via your `.travis.yml`:
54
+
55
+
env:
56
+
global:
57
+
- OCTOKIT_API_ENDPOINT: "GITHUB ENTERPRISE API ENDPOINT"
58
+
46
59
### Uploading Multiple Files
47
60
48
61
You can upload multiple files using yml array notation. This example uploads two files.
0 commit comments