-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
23 lines (20 loc) · 995 Bytes
/
Copy path.env.example
File metadata and controls
23 lines (20 loc) · 995 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# GitHub Packages Authentication
# Copy this file to .env and fill in your credentials
# Required for downloading the kDisco dependency from GitHub Packages
#
# IMPORTANT: docker compose auto-loads .env only for ${VAR} interpolation. The
# BuildKit secrets used for the build (secrets.environment in docker-compose.yml)
# read the value from the *process* environment, so you must EXPORT these vars
# before building, not just define them here:
#
# set -a; source .env; set +a
# docker compose up --build
#
# (set -a marks subsequent assignments for export; set +a turns it back off.)
# Your GitHub username
GITHUB_ACTOR=your-github-username
# Your GitHub Personal Access Token with 'read:packages' scope
# Generate at: https://github.com/settings/tokens
GITHUB_TOKEN=your-personal-access-token
# Note: GitHub Packages requires authentication even for public packages
# See: https://docs.github.com/en/packages/working-with-a-github-packages-registry/working-with-the-gradle-registry