From 98785b08225b63718df606162eaa6281a0fe9991 Mon Sep 17 00:00:00 2001 From: Vendicated Date: Wed, 30 Nov 2022 03:18:58 +0100 Subject: [PATCH] workflow fixes --- .github/workflows/release.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 09d38b1..96d4d97 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -41,16 +41,14 @@ jobs: run: go get -v - name: Build - run: CGO_ENABLED=1 GOOS=linux GOARCH=amd64 go build -v -tags static -ldflags "-s -w -X 'main.InstallerGitHash=$(git rev-parse --short HEAD)'" + run: CGO_ENABLED=1 GOOS=linux GOARCH=amd64 go build -v -tags static -ldflags "-s -w -X 'main.InstallerGitHash=$(git rev-parse --short HEAD)'" -o VencordInstaller-x11 - name: Build Wayland run: CGO_ENABLED=1 GOOS=linux GOARCH=amd64 go build -v -tags static -ldflags "-s -w -X 'main.InstallerGitHash=$(git rev-parse --short HEAD)'" --tags wayland -o VencordInstaller-wayland - name: Update executable run: | - chmod +x VencordInstaller - mv VencordInstaller VencordInstaller-x11 - mv VencordInstaller VencordInstaller-wayland + chmod +x VencordInstaller-* - name: Upload artifact uses: actions/upload-artifact@v3