This file contains hidden or 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
| type ITunesAlbumObj = { | |
| wrapperType: "collection" | (string & {}); | |
| collectionType: "Album" | (string & {}); | |
| artistId: number; | |
| collectionId: number; | |
| artistName: string; | |
| collectionName: string; | |
| collectionCensoredName: string; | |
| artistViewUrl: `https://music.apple.com/us/artist/${string}/${number}?uo=${number}`; | |
| collectionViewUrl: `https://music.apple.com/us/album/${string}/${number}?uo=${number}`; |
This file contains hidden or 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
| #!/bin/bash | |
| set -e | |
| OWNER="" | |
| REPO="" | |
| FILE_PATTERN="" # example: "build-*.zip" | |
| TOKEN="" # personal access token with permissions to read "Content" | |
| # INCLUDE_PRERELEASE="true" # whether to include prereleases - remove the # to enable |
OlderNewer