Skip to content

test(hass): remove spew #65

test(hass): remove spew

test(hass): remove spew #65

on:
push:
branches:
- main
permissions:
contents: write
pull-requests: write
name: release-please
jobs:
release_please:
runs-on: ubuntu-latest
steps:
- uses: google-github-actions/release-please-action@v3
id: release_please
name: Run release please
with:
release-type: go
token: ${{ secrets.GITHUB_TOKEN }}
- uses: actions/checkout@v3
if: ${{ steps.release_please.outputs.release_created }}
with:
fetch-depth: 0
- name: Fetch source
if: ${{ steps.release_please.outputs.release_created }}
id: git_fetch
run: git fetch --force --tags
- name: Setup Go
if: ${{ steps.release_please.outputs.release_created }}
id: setup_go
uses: actions/setup-go@v4
with:
go-version: '1.19.x'
- name: Install Go dependencies
if: ${{ steps.release_please.outputs.release_created }}
id: install_go_deps
run: |
go install golang.org/x/tools/cmd/stringer@latest
go install github.com/abice/go-enum@latest
go install github.com/fyne-io/fyne-cross@latest
go install golang.org/x/text/cmd/gotext@latest
- name: Install dependencies
if: ${{ steps.release_please.outputs.release_created }}
id: install_linux_deps
run: sudo apt-get install -y desktop-file-utils gcc libgl1-mesa-dev libegl1-mesa-dev libgles2-mesa-dev libx11-dev xorg-dev
- name: Update VERSION
if: ${{ steps.release_please.outputs.release_created }}
id: update_version
shell: sh
run: cd internal/agent && printf %s $(git tag | tail -1) > VERSION
- uses: goreleaser/goreleaser-action@v4
if: ${{ steps.release_please.outputs.release_created }}
name: Run Go Releaser
id: run_goreleaser
with:
distribution: goreleaser
version: latest
args: release --clean
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}