Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for secret (0.25 sec)

  1. .teamcity/src/main/kotlin/promotion/PromotionProject.kt

            password("env.DOTCOM_DEV_DOCS_AWS_ACCESS_KEY", "%dotcomDevDocsAwsAccessKey%")
            password("env.DOTCOM_DEV_DOCS_AWS_SECRET_KEY", "%dotcomDevDocsAwsSecretKey%")
            password("env.ORG_GRADLE_PROJECT_sdkmanToken", "%sdkmanToken%")
            param("env.JAVA_HOME", javaHome(BuildToolBuildJvm, Os.LINUX))
    Plain Text
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Thu Feb 29 04:36:37 GMT 2024
    - 2.2K bytes
    - Viewed (0)
  2. .github/workflows/notify-on-rc-for-manual-test.yml

                      }
                    }
                  ]
                }
            env:
    Others
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Thu Mar 16 08:48:39 GMT 2023
    - 1008 bytes
    - Viewed (0)
  3. .github/workflows/contributor-pr.yml

      cancel-in-progress: true
    
    
    env:
      # Set the DEVELOCITY_ACCESS_KEY so that Gradle Build Scans are generated
      DEVELOCITY_ACCESS_KEY: ${{ secrets.GRADLE_ENTERPRISE_ACCESS_KEY }}
      # Enable debug for the `gradle-build-action` cache operations
      GRADLE_BUILD_ACTION_CACHE_DEBUG_ENABLED: true
    
    permissions:
      contents: read
    
    jobs:
      build:
    Others
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Thu Apr 25 08:50:27 GMT 2024
    - 3.8K bytes
    - Viewed (0)
  4. .teamcity/src/main/kotlin/util/PublishKotlinDslPlugin.kt

        }
    
        params {
            param("env.JAVA_HOME", javaHome(BuildToolBuildJvm, Os.LINUX))
            param("env.GRADLE_PUBLISH_KEY", "%plugin.portal.publish.key%")
            param("env.GRADLE_PUBLISH_SECRET", "%plugin.portal.publish.secret%")
            param("env.PGP_SIGNING_KEY", "%pgpSigningKey%")
            param("env.PGP_SIGNING_KEY_PASSPHRASE", "%pgpSigningPassphrase%")
        }
        steps {
            gradleWrapper {
    Plain Text
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Tue Dec 05 00:08:14 GMT 2023
    - 1.8K bytes
    - Viewed (0)
  5. .github/workflows/codeql-analysis.yml

          env:
            # Set the DEVELOCITY_ACCESS_KEY so that Gradle Build Scans are generated
            DEVELOCITY_ACCESS_KEY: ${{ secrets.GRADLE_ENTERPRISE_ACCESS_KEY }}
            # Potential stop-gap solution for ReadTimeout issues with the Gradle Build Cache
            # https://gradle.slack.com/archives/CHDLT99C6/p1636477584059200
    Others
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Wed Apr 24 03:34:53 GMT 2024
    - 4K bytes
    - Viewed (0)
  6. .github/workflows/slack-notifier.yml

                      }
                    }
                  ]
                }
            env:
    Others
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Tue Apr 04 06:43:15 GMT 2023
    - 1.3K bytes
    - Viewed (0)
  7. .github/workflows/gitstream.yml

        runs-on: ubuntu-latest
        name: gitStream workflow automation
        steps:
          - name: Evaluate Rules
            uses: linear-b/gitstream-github-action@v1
            env:
              REPO_READ_TOKEN: ${{ secrets.GITSTREAM_TESTING_TOKEN }}
            id: rules-engine
            with:
              full_repository: ${{ github.event.inputs.full_repository }}
              head_ref: ${{ github.event.inputs.head_ref }}
    Others
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Fri Apr 19 12:22:37 GMT 2024
    - 1.6K bytes
    - Viewed (0)
  8. .github/workflows/check-bad-merge.yml

              echo "EOF" >> $GITHUB_ENV
          - name: Comment on PR if check failed
            if: ${{ failure() }}
            uses: actions/github-script@v7
            with:
              github-token: ${{ secrets.GITHUB_TOKEN }}
              script: |
                const output = `
                Some bad merge is found:
                \`\`\`
                ${{ env.OUTPUT }}
                \`\`\`
                `;
    Others
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Tue Jan 30 18:26:59 GMT 2024
    - 1.7K bytes
    - Viewed (0)
  9. build-logic/idea/src/main/kotlin/gradlebuild.ide.gradle.kts

    }
    
    fun ProjectSettings.configureRunConfigurations() {
        runConfigurations {
            create<Remote>("Remote debug port 5005") {
                mode = Remote.RemoteMode.ATTACH
                transport = Remote.RemoteTransport.SOCKET
                sharedMemoryAddress = "javadebug"
                host = "localhost"
                port = 5005
            }
        }
    }
    
    
    Plain Text
    - Registered: Wed Mar 27 11:36:08 GMT 2024
    - Last Modified: Mon Jun 26 15:42:59 GMT 2023
    - 3.6K bytes
    - Viewed (0)
Back to top