Fix release issues #181
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Java CI | |
on: | |
push: | |
branches: | |
- master | |
- $default-branch | |
- $protected-branches | |
pull_request: | |
branches: | |
- master | |
- $default-branch | |
workflow_dispatch: | |
permissions: | |
id-token: write | |
attestations: write | |
contents: write | |
packages: write | |
jobs: | |
call-workflow-latest: | |
uses: JOSM/JOSMPluginAction/.github/workflows/ant.yml@v3 | |
with: | |
josm-revision: "" | |
java-version: 17 | |
call-workflow-min: | |
uses: JOSM/JOSMPluginAction/.github/workflows/ant.yml@v3 | |
with: | |
josm-revision: "r18877" | |
java-version: 17 | |
perform-revision-tagging: ${{ github.repository == 'JOSM/Mapillary' && github.ref_type == 'branch' && github.ref_name == 'master' && github.event_name != 'schedule' && github.event_name != 'pull_request' }} | |
add-mapillary-keys: | |
runs-on: ubuntu-latest | |
needs: call-workflow-min | |
env: | |
GH_TOKEN: ${{ github.token }} | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Echo env | |
run: echo ${{ needs.call-workflow-min.outputs.tag }} | |
- name: Get Mapillary jar | |
run: gh release download ${{ needs.call-workflow-min.outputs.tag }} --pattern Mapillary.jar | |
- name: Add keys | |
run: | | |
cat <<EOF > mapillary_api_keys.json | |
{ | |
"MAPILLARY_CLIENT_ID": "${{ secrets.MAPILLARY_CLIENT_ID }}", | |
"MAPILLARY_CLIENT_TOKEN": "${{ secrets.MAPILLARY_CLIENT_TOKEN }}", | |
"MAPILLARY_CLIENT_SECRET": "${{ secrets.MAPILLARY_CLIENT_SECRET }}" | |
} | |
EOF | |
zip Mapillary.jar mapillary_api_keys.json | |
- name: Perform attestation (jar after adding API keys) | |
uses: actions/attest-build-provenance@v1 | |
with: | |
subject-path: Mapillary.jar | |
- name: Upload Mapillary jar | |
run: gh release upload ${{ needs.call-workflow-min.outputs.tag }} --clobber Mapillary.jar |