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
nxCloudAppURL: 'https://local.nx.app' | |
global: | |
imageRepository: 'nxprivatecloud' | |
imageTag: '2306.01.2.patch1' | |
secret: | |
name: 'nx-cloud-k8s-secret' | |
adminPassword: 'ADMIN_PASSWORD' | |
# githubAuthClientId: 'GITHUB_AUTH_CLIENT_ID' |
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
apiVersion: v1 | |
kind: Secret | |
metadata: | |
name: nx-cloud-k8s-secret | |
type: Opaque | |
stringData: | |
ADMIN_PASSWORD: your-admin-password | |
GITHUB_AUTH_CLIENT_ID: '' | |
GITHUB_AUTH_CLIENT_SECRET: '' |
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
name: "NxCloud Git Checkout step" | |
description: "Clone a repository at the current commit inside an NxCloud workflow" | |
runs: | |
using: ubuntu | |
steps: | |
- name: Run some command in bash | |
run: echo "from inside actions file" |
OlderNewer