diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml index 4ea6bd957..36ef8e140 100644 --- a/.github/workflows/maven.yml +++ b/.github/workflows/maven.yml @@ -88,7 +88,7 @@ jobs: if: github.repository == 'OpenRefine/OpenRefine' uses: dev-drprasad/delete-older-releases@v0.1.0 with: - repo: OpenRefine/OpenRefine-nightly-releases + repo: OpenRefine/OpenRefine-snapshot-releases # Specifies number of latest releases (sorted by created_at) to keep. Pass 0 if you want to delete all releases keep_latest: 10 # Specifies whether to delete tags associated to older releases or not. diff --git a/.github/workflows/release_manager.sh b/.github/workflows/release_manager.sh index b3907b211..4d551a5fa 100755 --- a/.github/workflows/release_manager.sh +++ b/.github/workflows/release_manager.sh @@ -5,4 +5,4 @@ API_JSON=$(printf '{"tag_name": "%s","target_commitish": "master","name": "OpenRefine snapshot %s","body": "This is a snapshot of the development version of OpenRefine, made on %s.\\n\\nThis contains the latest new features and bug fixes, but might not have been tested as thoroughly as official releases.\\n\\nMake sure you [back up your workspace](https://github.com/OpenRefine/OpenRefine/wiki/Back-Up-OpenRefine-Data) to avoid data loss and report any issues found with this version on [the mailing list](https://groups.google.com/forum/#!forum/openrefine).","draft": false,"prerelease": true}' ${OR_VERSION} ${OR_VERSION} "$(date -u +"%c")" ) # Create Release -echo $( curl --silent --data "${API_JSON}" "https://api.github.com/repos/${RELEASE_REPO_OWNER}/OpenRefine-nightly-releases/releases?access_token=${RELEASE_REPO_TOKEN}" | jq -r '.upload_url' ) +echo $( curl --silent --data "${API_JSON}" "https://api.github.com/repos/${RELEASE_REPO_OWNER}/OpenRefine-snapshot-releases/releases?access_token=${RELEASE_REPO_TOKEN}" | jq -r '.upload_url' )