Skip to content

Commit

Permalink
fix: workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
joshmuente committed Sep 17, 2021
1 parent 20cc90c commit 4626890
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ci/github-actions/generate-pkgbuild.py
Expand Up @@ -7,7 +7,7 @@
try:
tag = os.environ.get("tag_name")
raw_version = tag.replace('v', '')
sha265sum_url = f"https://github.com/joshmuente/nightwaveplaza-tui/releases/download/{tag}/nightwaveplaza-tui_{tag}_x86_64-unknown-linux-gnu.xz.sha256sum"
sha265sum_url = f"https://github.com/joshmuente/nightwaveplaza-tui/releases/download/{tag}/nightwaveplaza-tui_{tag}_x86_64-unknown-linux-gnu.tar.xz.sha256sum"
sha265sum = requests.get(sha265sum_url).content.decode("utf-8")

template = """#Maintainer: Josh Münte
Expand All @@ -24,7 +24,7 @@
depends=()
provides=("${_pkgname}")
conflicts=("${_pkgname}")
source=("${_url_source}/releases/download/v${pkgver}/${_pkgname}_v${pkgver}_${arch}-unknown-linux-gnu.xz")
source=("${_url_source}/releases/download/v${pkgver}/${_pkgname}_v${pkgver}_${arch}-unknown-linux-gnu.tar.xz")
sha256sums=('"""+ sha265sum +"""')
package () {
Expand Down

0 comments on commit 4626890

Please sign in to comment.