diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index c1c6eaa5..5e8e3e0c 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -26,8 +26,6 @@ jobs: version = context.payload.inputs.version; if (/^v/.test(version)) throw new Error("Bad version number: " + version) - uses: actions/checkout@v4 - with: - submodules: true - name: Cache data/sources uses: ./.github/cache-sources-action - uses: actions/setup-java@v4 @@ -56,9 +54,9 @@ jobs: ref: "refs/tags/v${{ github.event.inputs.version }}", sha: context.sha }) - - run: mv planetiler-dist/target/*with-deps.jar planetiler.jar - - run: sha256sum planetiler.jar > planetiler.jar.sha256 - - run: md5sum planetiler.jar > planetiler.jar.md5 + - run: mv planetiler-dist/target/*with-deps.jar planetiler-openmaptiles.jar + - run: sha256sum planetiler-openmaptiles.jar > planetiler-openmaptiles.jar.sha256 + - run: md5sum planetiler-openmaptiles.jar > planetiler-openmaptiles.jar.md5 - name: Install GPG Private Key run: | echo -n "${{ secrets.OSSRH_GPG_SECRET_KEY }}" | base64 --decode | gpg --batch --import @@ -69,7 +67,7 @@ jobs: tag_name: v${{ github.event.inputs.version }} draft: true files: | - planetiler.jar* + planetiler-openmaptiles.jar* env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - run: ./scripts/push-release.sh ${{ github.event.inputs.version }}