We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 361638f commit 413ed4eCopy full SHA for 413ed4e
2 files changed
.github/workflows/build-citus-community-nightlies.yml
@@ -72,7 +72,7 @@ jobs:
72
- name: Build packages
73
run: |
74
python -m tools.packaging_automation.citus_package \
75
- --gh_token "${GH_TOKEN}" \
+ --gh_token "${{ steps.app.outputs.token }}" \
76
--platform "${{ matrix.platform }}" \
77
--build_type "nightly" \
78
--secret_key "${PACKAGING_SECRET_KEY}" \
packaging_automation/tests/test_citus_package.py
@@ -60,7 +60,7 @@
60
61
TEST_GPG_KEY_NAME = "Citus Data <packaging@citusdata.com>"
62
TEST_GPG_KEY_PASSPHRASE = os.getenv("PACKAGING_PASSPHRASE")
63
-GH_TOKEN = os.getenv("GH_TOKEN")
+GH_TOKEN = os.environ("GH_TOKEN")
64
PACKAGE_CLOUD_API_TOKEN = os.getenv("PACKAGE_CLOUD_API_TOKEN")
65
REPO_CLIENT_SECRET = os.getenv("REPO_CLIENT_SECRET")
66
PLATFORM = get_build_platform(
0 commit comments