From 0d41baed44922717c54a27141f83ab63b7989b37 Mon Sep 17 00:00:00 2001 From: antoniotarricone Date: Fri, 25 Oct 2024 13:01:33 +0200 Subject: [PATCH] Removed useless comments. --- .github/workflows/build_n_deploy.yml | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/.github/workflows/build_n_deploy.yml b/.github/workflows/build_n_deploy.yml index 314b7b0..18ff1ec 100644 --- a/.github/workflows/build_n_deploy.yml +++ b/.github/workflows/build_n_deploy.yml @@ -8,34 +8,22 @@ jobs: runs-on: ubuntu-22.04 steps: - # - # Checkout the source code. - # - name: Checkout the source code uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # 4.2.2 with: token: ${{ secrets.GIT_PAT }} fetch-depth: 0 - # - # Setup Java Build Environment. - # - name: Setup Java Build Environment uses: ./.github/actions/setup-java-build-env with: gh_user: ${{ secrets.GIT_USER }} gh_token: ${{ secrets.GIT_PAT }} - # - # Build and deploy. - # - name: Build and deploy env: SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} run: ${{ runner.temp }}/maven/bin/mvn --batch-mode deploy -Pvalidate -s ${{ runner.temp }}/settings.xml --no-transfer-progress - # - # Build and deploy site. - # - name: Build and deploy site run: ${{ runner.temp }}/maven/bin/mvn --batch-mode site -s ${{ runner.temp }}/settings.xml --no-transfer-progress