Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for clear (0.89 sec)

  1. .github/workflows/maven_build_itself.yml

                echo "${{ env.TAR_BALL }} does not exist."
                exit 1;
              fi
            env:
              TAR_BALL: apache-maven/target/apache-maven-bin.tar.gz
    
          - name: Clean with Maven
            run: ./mvnw -e -B -V clean
    
          - name: Build again with Maven SNAPSHOT
            shell: bash
            run: |
              set +e
              export PATH=${{ env.TEMP_MAVEN_BIN_DIR }}:$PATH
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jun 03 17:58:28 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  2. .github/workflows/maven.yml

    # KIND, either express or implied.  See the License for the
    # specific language governing permissions and limitations
    # under the License.
    
    name: Java CI
    
    on: [push, pull_request, workflow_dispatch]
    
    # clear all permissions for GITHUB_TOKEN
    permissions: {}
    
    jobs:
      build:
    
        # execute on any push, workflow_dispatch  or pull request from forked repo
        if: >
          github.event_name == 'push' ||
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jun 03 17:58:28 UTC 2024
    - 5K bytes
    - Viewed (0)
Back to top