Skip to content

Commit

Permalink
Fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
oxodao committed Feb 5, 2022
1 parent 17bac05 commit 53db5e1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
- uses: actions/setup-go@v2
with:
go-version: '^1.17.5'
- run: GOOS=linux GOARCH=amd64 go build -o metaprint-${GITHUB_REF##*/}-x86_64 .
- run: GOOS=linux GOARCH=amd64 go build -o metaprint-${GITHUB_REF##*/}-linux-x86_64 .
- uses: ncipollo/release-action@v1
with:
artifacts: "metaprint-*-*-*"
Expand Down
4 changes: 1 addition & 3 deletions packaging/arch/PKGBUILD
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,9 @@ arch=('x86_64')
url="https://github.com/oxodao/metaprint"
license=('GPL')
optdepends=()
provides=("$pkgname")
conflicts=("$pkgname")
source=("https://github.com/oxodao/$pkgname/releases/download/v$pkgver/$pkgname-v$pkgver-linux-$CARCH")
md5sums=('SKIP')

package() {
install -Dm 777 "$pkgname-v$pkgver-linux-$CARCH" "${pkgdir}/usr/local/bin/metaprint"
install -Dm 777 "$pkgname-v$pkgver-linux-$CARCH" "${pkgdir}/usr/bin/metaprint"
}

0 comments on commit 53db5e1

Please sign in to comment.