Skip to content

Commit

Permalink
Rebuilding 0.8.1 artifact for use in Terraform 0.13 release process
Browse files Browse the repository at this point in the history
Rebuilding 0.8.1 artifact for use in Terraform 0.13 release process.

delete dist files

exclude dist from checkin
  • Loading branch information
zstlaw committed Aug 13, 2020
1 parent 43e62bb commit a8e0ceb
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 12 deletions.
14 changes: 5 additions & 9 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,30 +14,26 @@ name: goreleaser
on:
push:
tags:
- '*'
- 'v*'
jobs:
goreleaser:
runs-on: ubuntu-latest
steps:
-
name: Checkout
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
-
name: Set up Go
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.14
-
name: Import GPG key
- name: Import GPG key
id: import_gpg
uses: paultyng/ghaction-import-gpg@v2.1.0
env:
GPG_PRIVATE_KEY: ${{ secrets.GPG_PRIVATE_KEY }}
PASSPHRASE: ${{ secrets.PASSPHRASE }}
-
name: Run GoReleaser
- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v2
with:
version: latest
Expand Down
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ terraform.tfstate
terraform.tfstate.backup
*.log

# local files
.DS_Store
/dist

# eclipse
.classpath
.project
Expand Down
5 changes: 2 additions & 3 deletions .goreleaser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ builds:
ldflags:
- '-s -w -X main.version={{.Version}} -X main.commit={{.Commit}}'
goos:
- freebsd
- windows
- linux
- darwin
Expand Down Expand Up @@ -50,5 +49,5 @@ signs:
release:
# Visit your project's GitHub Releases page to publish this release.
draft: true
changelog:
skip: true
#changelog:
# skip: true

0 comments on commit a8e0ceb

Please sign in to comment.