Merge pull request #142 from warrensbox/master #8
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
# Trigger when commits are pushed to the release branch | |
on: | |
push: | |
branches: | |
- release | |
workflow_dispatch: | |
jobs: | |
hubapp-release: | |
name: Release | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Checkout go | |
uses: actions/setup-go@v3 | |
with: | |
go-version: '1.18' # The Go version to download (if necessary) and use. | |
- name: Go version | |
id: Version | |
run: go version | |
- name: Go download | |
run: go mod download | |
- name: Go test | |
run: go test -v ./... | |
continue-on-error: false | |
- name: Go build | |
run: mkdir -p build && go build -v -o build/tgswitch | |
- name: Run Test script | |
run: chmod 755 test-tgswitch.sh && ./test-tgswitch.sh | |
- name: Bump version and push tag | |
uses: anothrNick/[email protected] | |
id: vars | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
WITH_V: false | |
INITIAL_VERSION: 0.6.0 | |
RELEASE_BRANCHES: release | |
DEFAULT_BUMP: patch | |
- name: Check output | |
env: | |
RELEASE_VERSION: ${{ steps.vars.outputs.tag }} | |
run: | | |
echo $RELEASE_VERSION | |
echo ${{ steps.vars.outputs.tag }} | |
- name: Install GoReleaser | |
uses: goreleaser/goreleaser-action@v3 | |
with: | |
version: latest | |
args: release --rm-dist | |
env: | |
GITHUB_TOKEN: ${{ secrets.HOMEBREW_TOKEN_TGSWITCH }} | |
RELEASE_VERSION: ${{ steps.vars.outputs.tag }} | |
CLIENT_ID: ${{ secrets.CLIENT_ID }} | |
CLIENT_SECRET: ${{ secrets.CLIENT_SECRET }} | |
- name: Install Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: 3.x | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install mkdocs-material | |
- name: Build page | |
run: cd www && mkdocs gh-deploy --force | |
env: | |
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} |