Skip to content
This repository has been archived by the owner on Jul 2, 2024. It is now read-only.

Commit

Permalink
updated to twitchpl v0.3.7
Browse files Browse the repository at this point in the history
  • Loading branch information
evan-sm committed Oct 1, 2021
1 parent 490d324 commit 217eac2
Show file tree
Hide file tree
Showing 5 changed files with 660 additions and 52 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: release
on:
release:
types:
- created

jobs:
releases-matrix:
name: Release Go Binary
runs-on: ubuntu-latest
strategy:
matrix:
goos: [linux, windows, darwin]
goarch: [arm, arm64, amd64]
exclude:
- goarch: "arm"
goos: darwin
- goarch: "arm"
goos: windows
- goarch: "arm64"
goos: windows
steps:
- uses: actions/checkout@v2
- uses: wangyoucao577/[email protected]
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
goos: ${{ matrix.goos }}
goarch: ${{ matrix.goarch }}
project_path: "./"
binary_name: "rekoda"
extra_files: LICENSE README.md
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
1/
go.sum
rekoda
rekoda.toml
12 changes: 10 additions & 2 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/wmw9/rekoda

go 1.16
go 1.17

require (
github.com/antonfisher/nested-logrus-formatter v1.3.1
Expand All @@ -14,6 +14,14 @@ require (
github.com/sirupsen/logrus v1.8.1
github.com/spf13/cobra v1.2.1
github.com/stretchr/testify v1.7.1-0.20210427113832-6241f9ab9942
github.com/wmw9/twitchpl v0.2.8
github.com/wmw9/twitchpl v0.3.7
golang.org/x/sys v0.0.0-20210823070655-63515b42dcdf // indirect
)

require (
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/inconshreveable/mousetrap v1.0.0 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/spf13/pflag v1.0.5 // indirect
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect
)
Loading

0 comments on commit 217eac2

Please sign in to comment.