Skip to content

Commit

Permalink
Fixed pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
Mohit Kumar Sharma committed May 27, 2020
1 parent e04ac4a commit e32ddef
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 2 deletions.
24 changes: 23 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,29 @@ on:

jobs:
goreleaser:
runs-on: [ubuntu-latest, windows-latest]
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v2

- name: Unshallow
run: git fetch --prune --unshallow

- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.14

- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v2
with:
version: latest
args: release --rm-dist --release-notes CHANGELOG.md
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

goreleaser-windows:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# v0.1.1 (May 27, 2020)

* Fixed coloring issue with windows platform

# v0.1.0 (May 26, 2020)

* Initial release
2 changes: 1 addition & 1 deletion cmd/root.go
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ var (
Short: "Proffer is a cross platform tool to distribute cloud images between multiple regions and environments using yml configuration file.",
Long: profferLong,
Example: profferExamples,
Version: "0.1.0",
Version: "0.1.1",
// Uncomment the following line if your bare application
// has an action associated with it:
// Run: func(cmd *cobra.Command, args []string) { },
Expand Down

0 comments on commit e32ddef

Please sign in to comment.