Skip to content

Commit

Permalink
Update changelog config of goreleaser (QubitPi#19)
Browse files Browse the repository at this point in the history
  • Loading branch information
QubitPi committed Jun 20, 2024
1 parent a4eb59d commit 814a72a
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 2 deletions.
13 changes: 12 additions & 1 deletion .github/workflows/ci-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,20 @@ jobs:
echo "Found Go $(cat .go-version)"
echo "go-version=$(cat .go-version)" >> $GITHUB_OUTPUT
gorelease-config-check:
name: Checking if gorelease configuration is valid
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: |
echo 'deb [trusted=yes] https://repo.goreleaser.com/apt/ /' | sudo tee /etc/apt/sources.list.d/goreleaser.list
sudo apt update
sudo apt install goreleaser -y
goreleaser check .goreleaser.yml
tests:
name: Go Tests
needs: [test-example, get-go-version]
needs: [test-example, get-go-version, gorelease-config-check]
outputs:
outcome: ${{ job.status }}
continue-on-error: true
Expand Down
3 changes: 2 additions & 1 deletion .goreleaser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,4 +83,5 @@ release:
#- glob: ./docs.zip

changelog:
skip: true
sort: asc
use: github

0 comments on commit 814a72a

Please sign in to comment.