diff options
author | Wim <wim@42.be> | 2020-06-28 18:13:50 +0200 |
---|---|---|
committer | Wim <wim@42.be> | 2020-06-28 18:13:50 +0200 |
commit | 7bf9e1cfb34fd1a4159a79a640954fca4489f75a (patch) | |
tree | 0da287e16e54c68df9b1d983f80e30998fad5465 /.github/workflows | |
parent | f291832a7747ebacd067763e08ee6ac51979472b (diff) | |
download | matterbridge-msglm-7bf9e1cfb34fd1a4159a79a640954fca4489f75a.tar.gz matterbridge-msglm-7bf9e1cfb34fd1a4159a79a640954fca4489f75a.tar.bz2 matterbridge-msglm-7bf9e1cfb34fd1a4159a79a640954fca4489f75a.zip |
Fix space in workflow
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/development.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/development.yml b/.github/workflows/development.yml index 37de828b..82f2c4aa 100644 --- a/.github/workflows/development.yml +++ b/.github/workflows/development.yml @@ -31,7 +31,7 @@ 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 |