Skip to content

Commit b64edee

Browse files
Merge pull request #46 from matrix-org/SimonBrandner/feat/naming-versioning
2 parents f7cd206 + d18f937 commit b64edee

File tree

5 files changed

+9
-7
lines changed

5 files changed

+9
-7
lines changed

.github/workflows/build.yaml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,11 @@ jobs:
1212
- uses: actions/checkout@v3
1313
- name: Setup go
1414
uses: actions/setup-go@v3
15+
with:
16+
go-version: 1.19
1517
- name: Build
1618
run: "./scripts/build.sh"
1719
- uses: actions/upload-artifact@v3
1820
with:
19-
name: bin
20-
path: ./dist/bin
21+
name: waterfall
22+
path: ./dist/waterfall

.github/workflows/lint.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,6 @@ jobs:
1515
- name: Install Go
1616
uses: actions/setup-go@v3
1717
with:
18-
go-version: 1.18
18+
go-version: 1.19
1919
- name: golangci-lint
2020
uses: golangci/golangci-lint-action@v3

go.mod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
module github.com/matrix-org/sfu-to-sfu
1+
module github.com/matrix-org/waterfall
22

3-
go 1.18
3+
go 1.19
44

55
require github.com/pion/webrtc/v3 v3.1.31
66

scripts/build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
#!/usr/bin/env bash
22

3-
go build -o dist/bin src/*.go
3+
go build -o dist/waterfall ./src

scripts/run.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
#!/usr/bin/env bash
22

3-
go run ./src/*.go --logTime
3+
go run ./src --logTime

0 commit comments

Comments
 (0)