diff --git a/.github/workflows/test-maven-pre-site.yml b/.github/workflows/test-maven-pre-site.yml deleted file mode 100644 index 3b7867b..0000000 --- a/.github/workflows/test-maven-pre-site.yml +++ /dev/null @@ -1,31 +0,0 @@ -name: test-maven-site-deploy -on: - push: - branches: - - main -jobs: - test-maven-site-deploy: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - - uses: actions/setup-java@v4 - with: - distribution: 'temurin' - java-version: '17' - server-id: github - - uses: actions/cache@v4 - with: - path: ~/.m2/repository - key: maven-repo-${{ hashFiles('**/pom.xml') }}-pre-site - restore-keys: maven-repo- - - uses: actions/cache@v4 - with: - path: ~/.cache/opennlp-model-generator - key: opennlp-model-cache-${{ github.run_id }} - restore-keys: opennlp-model-cache- - - run: mvn clean install - - run: git config --global user.name "abzif" - - run: git config --global user.email "abzif@users.noreply.github.com" - - run: mvn site-deploy - env: - GITHUB_TOKEN: ${{ github.token }}