Skip to content

Commit

Permalink
add release worflow
Browse files Browse the repository at this point in the history
  • Loading branch information
merlinfuchs committed Aug 27, 2023
1 parent 3d0f56d commit 7fe2b75
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Release Builds

on:
release:
types: [created]

jobs:
release:
name: Release Blimp
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Set up Go
uses: actions/setup-go@v4
- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v4
with:
distribution: goreleaser
version: latest
args: release --clean
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2 changes: 2 additions & 0 deletions .goreleaser.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
builds:
- binary: blimp
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ Customizable terminal UI for monitoring weather information, application status,

![Example](example.png)

_I'm running this on a RaspberryPi Zero inside a Macintosh 1 on my shelf to quickly see weather and uptime info._

## Features

- **Weather**: Display current weather information and forecast
Expand Down

0 comments on commit 7fe2b75

Please sign in to comment.