Skip to content

Commit

Permalink
fixed gha
Browse files Browse the repository at this point in the history
  • Loading branch information
balazsgrill committed Oct 16, 2024
1 parent 6dc8c8e commit a0388d6
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ jobs:
env:
GOOS: "linux"
GOARCH: "amd64"
run: go build -o potatodrive-proxy-amd64 -X 'main.Version=${{ env.VERSION }}'" ./cmd/proxy
run: go build -o potatodrive-proxy-amd64 -X 'main.Version=${{ env.VERSION }}' ./cmd/proxy
- uses: actions/upload-artifact@v4
with:
name: potatodrive-proxy-amd64
Expand All @@ -100,7 +100,7 @@ jobs:
GOOS: "linux"
GOARCH: "arm"
GOARM: "5"
run: go build -o potatodrive-proxy-armhf -X 'main.Version=${{ env.VERSION }}'" ./cmd/proxy
run: go build -o potatodrive-proxy-armhf -X 'main.Version=${{ env.VERSION }}' ./cmd/proxy
- uses: actions/upload-artifact@v4
with:
name: potatodrive-proxy-armhf
Expand Down Expand Up @@ -178,7 +178,9 @@ jobs:

release:
runs-on: ubuntu-latest
needs: installer
needs:
- installer
- debian-packages
if: github.ref_type == 'tag'
steps:
- name: release
Expand Down

0 comments on commit a0388d6

Please sign in to comment.