This repository was archived by the owner on May 26, 2026. It is now read-only.
implement in-memory streamview counter #11
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: CI | |
| on: | |
| push: | |
| tags: v.* | |
| branches: master | |
| jobs: | |
| release: | |
| runs-on: "ubuntu-20.04" | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: Set up Go | |
| uses: actions/setup-go@v2 | |
| with: | |
| go-version: 1.16 | |
| - name: Build | |
| run: make all | |
| #- name: Test | |
| # run: go test -v ./... | |
| - name: do release | |
| uses: "marvinpinto/action-automatic-releases@latest" | |
| with: | |
| repo_token: "${{ secrets.GITHUB_TOKEN }}" | |
| prerelease: false | |
| files: | | |
| stream-api | |
| upload-proxy | |
| upload-server |