Skip to content

Commit

Permalink
Fix missing name change
Browse files Browse the repository at this point in the history
  • Loading branch information
dvdmuckle committed Jul 22, 2020
1 parent 22ef905 commit 5de267c
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 1 deletion.
27 changes: 27 additions & 0 deletions .github/workflows/create-release.yml
Original file line number Diff line number Diff line change
@@ -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
2 changes: 1 addition & 1 deletion cmd/root.go
Original file line number Diff line number Diff line change
Expand Up @@ -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.`,
}
Expand Down

0 comments on commit 5de267c

Please sign in to comment.