diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c6c0b8f20..23616e1be 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -4,9 +4,15 @@ on: create: pull_request: types: [ opened, synchronize, reopened ] + paths-ignore: + - '*.md' + - 'docs/**' push: branches: - master + paths-ignore: + - '*.md' + - 'docs/**' workflow_dispatch: defaults: @@ -113,16 +119,6 @@ jobs: name: ${{ github.run_number }}-jars path: target/*.jar - - name: Upload jar artifact (only simple jar - without javadoc or sources) - if: ${{ matrix.release_from_this_build }} - uses: actions/upload-artifact@v2 - with: - name: plantuml-jar - path: | - target/*.jar - !target/*-javadoc.jar - !target/*-sources.jar - release: needs: [ workflow_config, build ] if: needs.workflow_config.outputs.do_release == 'true' || needs.workflow_config.outputs.do_snapshot_release == 'true'