Skip to content
Open
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
5 changes: 3 additions & 2 deletions .github/workflows/release_aur.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
latest_version=$(curl -s https://api.github.com/repos/Heroic-Games-Launcher/HeroicGamesLauncher/releases/latest | jq -r .tag_name)
pkgver=${latest_version#v}
pkgrel=1
url="https://github.com/Heroic-Games-Launcher/HeroicGamesLauncher/"
url="https://github.com/Heroic-Games-Launcher/HeroicGamesLauncher"
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

URLs usually go to more user-friendly websites, if available

Suggested change
url="https://github.com/Heroic-Games-Launcher/HeroicGamesLauncher"
url="https://heroicgameslauncher.com/"

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yes but this would break the download since it uses the $url bellow with the path to download the pacman file.

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Right, well, I don't see why that can't be changed as well

# Updated artifact naming convention with platform and architecture
_filename=Heroic-${pkgver}-linux-x64.pacman
source=("$url/releases/download/$latest_version/$_filename")
Expand All @@ -47,12 +47,13 @@ jobs:
pkgdesc="An Open source Launcher for Epic, Amazon and GOG Games"
arch=('x86_64')
url="$url"
license=('GPL3')
license=('GPL-3.0-only')
_filename=$_filename
source=("$source")
noextract=("$_filename")
sha256sums=(${sha256sums[@]})
options=(!strip)
depends=(which)
provides=(heroic-games-launcher)
conflicts=(heroic-games-launcher)

Expand Down
Loading