From 5de267c34235c420b7303e85fed80c3f593368e3 Mon Sep 17 00:00:00 2001 From: David Muckle Date: Wed, 22 Jul 2020 14:22:06 -0400 Subject: [PATCH] Fix missing name change --- .github/workflows/create-release.yml | 27 +++++++++++++++++++++++++++ cmd/root.go | 2 +- 2 files changed, 28 insertions(+), 1 deletion(-) create mode 100644 .github/workflows/create-release.yml diff --git a/.github/workflows/create-release.yml b/.github/workflows/create-release.yml new file mode 100644 index 0000000..fa3f0e0 --- /dev/null +++ b/.github/workflows/create-release.yml @@ -0,0 +1,27 @@ +on: + push: + # Sequence of patterns matched against refs/tags + tags: + - 'v*' # Push events to matching v*, i.e. v1.0, v20.15.10 + +name: Create Release + +jobs: + build: + name: Create Release + runs-on: ubuntu-latest + steps: + - name: Checkout code + uses: actions/checkout@v2 + - name: Create Release + id: create_release + uses: actions/create-release@v1 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # This token is provided by Actions, you do not need to create your own token + with: + tag_name: ${{ github.ref }} + release_name: Release ${{ github.ref }} + body: | + See commit history for changes. + draft: false + prerelease: false diff --git a/cmd/root.go b/cmd/root.go index e1d63e4..e1dcfbb 100644 --- a/cmd/root.go +++ b/cmd/root.go @@ -42,7 +42,7 @@ var cfgFile string var rootCmd = &cobra.Command{ Use: "spc", Short: "Command line tool to control Spotify", - Long: `Goify is a simple command line tool to control Spotify using the Spotify API + Long: `Spc is a simple command line tool to control Spotify using the Spotify API to allow for cross platform use. It is designed to be simple and is limited in scope, and is best when paired with another more complicated tool.`, }