Thumbnail

rani/matterbridge.git

Clone URL: https://git.buni.party/rani/matterbridge.git

commit 44ac51c0636da775acfd31cb78d3045689b91caa Author: Wim <wim@42.be> Date: Sun Jun 28 18:13:50 2020 +0000 Fix space in workflow diff --git a/.github/workflows/development.yml b/.github/workflows/development.yml index 37de828..82f2c4a 100644 --- a/.github/workflows/development.yml +++ b/.github/workflows/development.yml @@ -317 +317 @@ jobs: - name: Build run: | mkdir -p output/{win,lin,arm,mac} - VERSION = $(git describe --tags) + VERSION=$(git describe --tags) GOOS=linux GOARCH=amd64 go build -ldflags "-s -X main.githash=$(git log --pretty=format:'%h' -n 1)" -o output/lin/matterbridge-$VERSION-linux-amd64 GOOS=windows GOARCH=amd64 go build -ldflags "-s -X main.githash=$(git log --pretty=format:'%h' -n 1)" -o output/win/matterbridge-$VERSION-windows-amd64.exe GOOS=darwin GOARCH=amd64 go build -ldflags "-s -X main.githash=$(git log --pretty=format:'%h' -n 1)" -o output/mac/matterbridge-$VERSION-darwin-amd64