Skip to content

Update tool name in package_index #34

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
Jul 2, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 4 additions & 6 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -123,12 +123,10 @@ jobs:
repo-token: ${{ secrets.GITHUB_TOKEN }}
version: 3.x

# NOTICE: Generation of the index data is disabled for the time being.
# For more info: https://arduino.atlassian.net/browse/ATL-1301?focusedCommentId=28347
# - name: Build
# # This must be done after OS X notarization or the wrong checksum
# # would be calculated since the binary is modified during notarization
# run: task dist:generate-index-data
- name: Build
# This must be done after OS X notarization or the wrong checksum
# would be calculated since the binary is modified during notarization
run: task dist:generate-index-data

- name: Identify Prerelease
# This is a workaround while waiting for create-release action
Expand Down
16 changes: 8 additions & 8 deletions extras/package_index.json.template
Original file line number Diff line number Diff line change
@@ -1,52 +1,52 @@
{
"name": "fwupdater",
"name": "arduino-fwuploader",
"version": "%%VERSION%%",
"systems": [
{
"host": "i686-linux-gnu",
"url": "http://downloads.arduino.cc/tools/%%FILENAME%%_%%VERSION%%_Linux_32bit.tar.bz2",
"url": "http://downloads.arduino.cc/arduino-fwuploader/%%FILENAME%%_%%VERSION%%_Linux_32bit.tar.bz2",
"archiveFileName": "%%FILENAME%%_%%VERSION%%_Linux_32bit.tar.bz2",
"checksum": "SHA-256:%%LINUX32_SHA%%",
"size": "%%LINUX32_SIZE%%"
},
{
"host": "x86_64-pc-linux-gnu",
"url": "http://downloads.arduino.cc/tools/%%FILENAME%%_%%VERSION%%_Linux_64bit.tar.bz2",
"url": "http://downloads.arduino.cc/arduino-fwuploader/%%FILENAME%%_%%VERSION%%_Linux_64bit.tar.bz2",
"archiveFileName": "%%FILENAME%%_%%VERSION%%_Linux_64bit.tar.bz2",
"checksum": "SHA-256:%%LINUX64_SHA%%",
"size": "%%LINUX64_SIZE%%"
},
{
"host": "i686-mingw32",
"url": "http://downloads.arduino.cc/tools/%%FILENAME%%_%%VERSION%%_Windows_32bit.zip",
"url": "http://downloads.arduino.cc/arduino-fwuploader/%%FILENAME%%_%%VERSION%%_Windows_32bit.zip",
"archiveFileName": "%%FILENAME%%_%%VERSION%%_Windows_32bit.zip",
"checksum": "SHA-256:%%WINDOWS32_SHA%%",
"size": "%%WINDOWS32_SIZE%%"
},
{
"host": "x86_64-mingw32",
"url": "http://downloads.arduino.cc/tools/%%FILENAME%%_%%VERSION%%_Windows_64bit.zip",
"url": "http://downloads.arduino.cc/arduino-fwuploader/%%FILENAME%%_%%VERSION%%_Windows_64bit.zip",
"archiveFileName": "%%FILENAME%%_%%VERSION%%_Windows_64bit.zip",
"checksum": "SHA-256:%%WINDOWS64_SHA%%",
"size": "%%WINDOWS64_SIZE%%"
},
{
"host": "i386-apple-darwin11",
"url": "http://downloads.arduino.cc/tools/%%FILENAME%%_%%VERSION%%_macOS_64bit.tar.bz2",
"url": "http://downloads.arduino.cc/arduino-fwuploader/%%FILENAME%%_%%VERSION%%_macOS_64bit.tar.bz2",
"archiveFileName": "%%FILENAME%%_%%VERSION%%_macOS_64bit.tar.bz2",
"checksum": "SHA-256:%%OSX_SHA%%",
"size": "%%OSX_SIZE%%"
},
{
"host": "arm-linux-gnueabihf",
"url": "http://downloads.arduino.cc/tools/%%FILENAME%%_%%VERSION%%_Linux_ARM.tar.bz2",
"url": "http://downloads.arduino.cc/arduino-fwuploader/%%FILENAME%%_%%VERSION%%_Linux_ARM.tar.bz2",
"archiveFileName": "%%FILENAME%%_%%VERSION%%_Linux_ARM.tar.bz2",
"checksum": "SHA-256:%%LINUXARM_SHA%%",
"size": "%%LINUXARM_SIZE%%"
},
{
"host": "aarch64-linux-gnu",
"url": "http://downloads.arduino.cc/tools/%%FILENAME%%_%%VERSION%%_Linux_ARM64.tar.bz2",
"url": "http://downloads.arduino.cc/arduino-fwuploader/%%FILENAME%%_%%VERSION%%_Linux_ARM64.tar.bz2",
"archiveFileName": "%%FILENAME%%_%%VERSION%%_Linux_ARM64.tar.bz2",
"checksum": "SHA-256:%%LINUXARM64_SHA%%",
"size": "%%LINUXARM64_SIZE%%"
Expand Down