Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for artifactId (0.2 sec)

  1. .github/workflows/deploy-docs.yml

          - name: Clean site
            run: |
              rm -rf ./site
              mkdir ./site
          - name: Download Artifact Docs
            id: download
            uses: dawidd6/action-download-artifact@v3.1.4
            with:
              if_no_artifact_found: ignore
              github_token: ${{ secrets.FASTAPI_PREVIEW_DOCS_DOWNLOAD_ARTIFACTS }}
              workflow: build-docs.yml
              run_id: ${{ github.event.workflow_run.id }}
              name: docs-site
    Others
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Tue Mar 19 01:33:28 GMT 2024
    - 1.6K bytes
    - Viewed (0)
  2. .github/workflows/scorecard.yml

              #     of the value entered here.
              publish_results: true
    
          # Upload the results as artifacts (optional). Commenting out will disable uploads of run results in SARIF
          # format to the repository Actions tab.
          - name: "Upload artifact"
            uses: actions/upload-artifact@65462800fd760344b1a7b4382951275a0abb4808 # v4.3.3
            with:
              name: SARIF file
              path: results.sarif
    Others
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Wed Apr 24 19:33:50 GMT 2024
    - 2.9K bytes
    - Viewed (0)
  3. .github/workflows/build-docs.yml

              path: docs/${{ matrix.lang }}/.cache
          - name: Build Docs
            run: python ./scripts/docs.py build-lang ${{ matrix.lang }}
          - uses: actions/upload-artifact@v3
            with:
              name: docs-site
              path: ./site/**
    
      # https://github.com/marketplace/actions/alls-green#why
      docs-all-green:  # This job does nothing and is only used for the branch protection
    Others
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Tue Apr 02 03:12:00 GMT 2024
    - 4.8K bytes
    - Viewed (0)
  4. src/main/webapp/WEB-INF/view/admin/plugin/admin_plugin_installplugin.jsp

                                            <div class="form-group row">
                                                <la:errors property="selectedArtifact"/>
                                                <la:select styleId="artifacts" property="id" styleClass="form-control">
                                                    <c:forEach var="item" varStatus="s"
                                                               items="${availableArtifactItems}">
    Others
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Fri Feb 14 12:15:45 GMT 2020
    - 5.8K bytes
    - Viewed (0)
  5. .github/workflows/smokeshow.yml

          - uses: actions/setup-python@v5
            with:
              python-version: '3.9'
    
          - run: pip install smokeshow
    
          - uses: dawidd6/action-download-artifact@v3.1.4
            with:
              github_token: ${{ secrets.FASTAPI_SMOKESHOW_DOWNLOAD_ARTIFACTS }}
              workflow: test.yml
              commit: ${{ github.event.workflow_run.head_sha }}
    
          - run: smokeshow upload coverage-html
            env:
    Others
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Tue Mar 19 01:33:28 GMT 2024
    - 1.1K bytes
    - Viewed (0)
  6. .github/workflows/containers.yml

    permissions:
      contents: read
    
    env:
      GRADLE_OPTS: "-Dorg.gradle.jvmargs=-Xmx4g -Dorg.gradle.daemon=false -Dkotlin.incremental=false"
    
    jobs:
      test_containers:
        permissions:
          checks: write # for actions/upload-artifact
        runs-on: ubuntu-latest
        if: github.ref == 'refs/heads/master' || contains(github.event.pull_request.labels.*.name, 'containers')
    
        steps:
          - name: Checkout
            uses: actions/checkout@v4
    Others
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Sat Mar 23 12:00:11 GMT 2024
    - 911 bytes
    - Viewed (0)
  7. .github/workflows/build.yml

            uses: gradle/actions/setup-gradle@v3
    
          - name: Upload Artifacts
            run: ./gradlew clean publish --stacktrace
            env:
              ORG_GRADLE_PROJECT_mavenCentralUsername: ${{ secrets.SONATYPE_NEXUS_USERNAME }}
              ORG_GRADLE_PROJECT_mavenCentralPassword: ${{ secrets.SONATYPE_NEXUS_PASSWORD }}
              ORG_GRADLE_PROJECT_signingInMemoryKey: ${{ secrets.ARTIFACT_SIGNING_PRIVATE_KEY }}
    
      validation:
        name: "Validation"
    Others
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Mon Apr 15 01:51:50 GMT 2024
    - 17.2K bytes
    - Viewed (0)
  8. src/main/webapp/WEB-INF/view/admin/plugin/admin_plugin.jsp

                                                <c:forEach var="artifact" varStatus="s" items="${installedArtifactItems}">
                                                    <tr>
                                                        <td>${f:h(artifact.type)}</td>
                                                        <td>${f:h(artifact.name)}</td>
                                                        <td>${f:h(artifact.version)}</td>
    Others
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 13 07:47:04 GMT 2020
    - 10.5K bytes
    - Viewed (0)
  9. .github/workflows/maven.yml

          - name: Upload artifact on integration testing
            uses: actions/upload-artifact@v4
            if: failure() && matrix.os != 'windows-latest'
            with:
              name: ${{ github.run_number }}-integration-test-artifact-${{ matrix.os }}-${{ matrix.java }}
    Others
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Mar 03 21:28:30 GMT 2024
    - 4.5K bytes
    - Viewed (0)
  10. .github/workflows/docs.yml

    permissions:
      contents: read
    
    env:
      GRADLE_OPTS: "-Dorg.gradle.jvmargs=-Xmx4g -Dorg.gradle.daemon=false -Dkotlin.incremental=false"
    
    jobs:
      test_docs:
        permissions:
          checks: write # for actions/upload-artifact
        runs-on: ubuntu-latest
        if: github.ref == 'refs/heads/master' || contains(github.event.pull_request.labels.*.name, 'documentation')
    
        steps:
          - name: Checkout
            uses: actions/checkout@v4
    Others
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Mon Mar 04 06:13:36 GMT 2024
    - 1K bytes
    - Viewed (0)
Back to top