5
0
mirror of https://github.com/cwinfo/matterbridge.git synced 2024-09-19 15:49:36 +00:00

Upload artifacts on commit

This commit is contained in:
Wim 2020-06-28 18:11:02 +02:00
parent 1fee323247
commit f291832a77

View File

@ -13,11 +13,11 @@ jobs:
with: with:
version: v1.27 version: v1.27
args: "-v --new-from-rev HEAD~1" args: "-v --new-from-rev HEAD~1"
test: test-build-upload:
strategy: strategy:
matrix: matrix:
go-version: [1.13.x, 1.14.x] go-version: [1.13.x, 1.14.x]
platform: [ubuntu-latest, macos-latest, windows-latest] platform: [ubuntu-latest]
runs-on: ${{ matrix.platform }} runs-on: ${{ matrix.platform }}
steps: steps:
- name: Install Go - name: Install Go
@ -27,4 +27,29 @@ jobs:
- name: Checkout code - name: Checkout code
uses: actions/checkout@v2 uses: actions/checkout@v2
- name: Test - name: Test
run: go test ./... run: go test ./...
- name: Build
run: |
mkdir -p output/{win,lin,arm,mac}
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
- name: Upload linux 64-bit
if: startsWith(matrix.go-version,'1.14')
uses: actions/upload-artifact@v2
with:
name: linux
path: output/lin
- name: Upload windows 64-bit
if: startsWith(matrix.go-version,'1.14')
uses: actions/upload-artifact@v2
with:
name: windows
path: output/win
- name: Upload darwin 64-bit
if: startsWith(matrix.go-version,'1.14')
uses: actions/upload-artifact@v2
with:
name: darwin
path: output/mac