forked from EnigmaticaModpacks/ModpackUploader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
secrets.ps1
25 lines (18 loc) · 937 Bytes
/
secrets.ps1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# Secret settings for the ModpackUploader
# For details/help see: https://github.com/NillerMedDild/ModpackUploader
# =====================================================================//
# CURSEFORGE ACCOUNT SETTINGS
# =====================================================================//
# Get one here: https://authors.curseforge.com/account/api-tokens
$CURSEFORGE_TOKEN = "My-Token"
# =====================================================================//
# GITHUB COMPATIBILITY SETTINGS
# =====================================================================//
# Example for this repo:
# https://github.com/EnigmaticaModpacks/ModpackUploader
# https://github.com/$GITHUB_NAME/$GITHUB_REPOSITORY
# $GITHUB_NAME = "EnigmaticaModpacks"
# $GITHUB_REPOSITORY = "ModpackUploader"
$GITHUB_NAME = "MyGitHubUsername"
$GITHUB_REPOSITORY = "MyModpack"
$GITHUB_TOKEN = "$GITHUB_NAME`:MY-SECRET-GITHUB-TOKEN"