-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
5 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -28,11 +28,15 @@ jobs: | |
echo "export KUBECONFIG=$HOME/.kube/config" >> $HOME/.bashrc | ||
export KUBECONFIG=$HOME/.kube/config | ||
env: # Set the secret as an input | ||
kubeconfig_secret: ${{ secrets.kubeconfig }} | ||
kubeconfig_secret: ${{ secrets.KUBECONFIG }} | ||
- name: Set up Python 3.8 | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: 3.8 | ||
- name: Debugging with tmate | ||
uses: mxschmitt/[email protected] | ||
env: # Set the secret as an input | ||
kubeconfig_secret: ${{ secrets.KUBECONFIG }} | ||
- name: Install KFP SDK for KFP DSL Compile tool | ||
run: | | ||
python -m pip install --upgrade pip | ||
|