Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
with
52 additions
and 52 deletions.
- +34 −34 .github/workflows/ci.yml
- +17 −17 .github/workflows/release.yml
- +1 −1 Dockerfile
There are no files selected for viewing
This file contains 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
This file contains 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
| @@ -1,30 +1,30 @@ | ||
| name: Release | ||
| on: | ||
| push: | ||
| tags: "v*" | ||
|
|
||
| jobs: | ||
| release: | ||
| name: Publish release | ||
| runs-on: ubuntu-latest | ||
|
|
||
| steps: | ||
| - uses: actions/checkout@v2 | ||
|
|
||
| - name: Set up Go | ||
| uses: actions/setup-go@v1 | ||
| with: | ||
| go-version: "1.13" | ||
|
|
||
| - name: Publish release script | ||
| run: script/publish-release | ||
| env: | ||
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
|
|
||
| - uses: mislav/bump-homebrew-formula-action@v1 | ||
| if: "!contains(github.ref, '-')" # skip prereleases | ||
| with: | ||
| formula-name: hub | ||
| env: | ||
| COMMITTER_TOKEN: ${{ secrets.COMMITTER_TOKEN }} | ||
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
This file contains 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

