diff --git a/.github/workflows/ant-release.yml b/.github/workflows/ant-release.yml new file mode 100644 index 0000000..d0077e3 --- /dev/null +++ b/.github/workflows/ant-release.yml @@ -0,0 +1,12 @@ +name: Release + +on: + release: + types: [created] + +jobs: + call-workflow: + uses: JOSM/JOSMPluginAction/.github/workflows/ant.yml@v1 + with: + josm-revision: "r14153" + diff --git a/.github/workflows/ant.yml b/.github/workflows/ant.yml new file mode 100644 index 0000000..78a496d --- /dev/null +++ b/.github/workflows/ant.yml @@ -0,0 +1,24 @@ +name: Java CI + +on: + push: + branches: + - master + - $default-branch + - $protected-branches + pull_request: + branches: + - master + - $default-branch + schedule: + - cron: "3 23 * * 4" + workflow_dispatch: + +jobs: + call-workflow: + strategy: + matrix: + josm-revision: ["", "r14153"] + uses: JOSM/JOSMPluginAction/.github/workflows/ant.yml@v1 + with: + josm-revision: ${{ matrix.josm-revision }}