Skip to content

Commit

Permalink
test homebrew build
Browse files Browse the repository at this point in the history
  • Loading branch information
warrensbox committed Mar 31, 2024
1 parent d24be78 commit ef22bc9
Showing 1 changed file with 27 additions and 27 deletions.
54 changes: 27 additions & 27 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
fetch-depth: '0'

- name: Checkout go
uses: actions/setup-go@v2
uses: actions/setup-go@v4
with:
go-version: '1.16' # The Go version to download (if necessary) and use.

Expand All @@ -41,7 +41,7 @@ jobs:

- name: Bump version and push tag
uses: anothrNick/github-tag-action@1.67.0
id: vars #test4
id: tagging #test4
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
WITH_V: false
Expand All @@ -68,30 +68,30 @@ jobs:
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}


# - name: Install GoReleaser
# uses: goreleaser/goreleaser-action@v2
# with:
# version: latest
# args: release --rm-dist
# env:
# GITHUB_TOKEN: ${{ secrets.GORELEASER_GITHUB_TOKEN }}
# 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 }}
- name: Install GoReleaser
uses: goreleaser/goreleaser-action@v5
with:
version: latest
args: release --rm-dist
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
RELEASE_VERSION: ${{ steps.tagging.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 }}


0 comments on commit ef22bc9

Please sign in to comment.