Skip to content

Commit

Permalink
ci: Remove signature from release message
Browse files Browse the repository at this point in the history
  • Loading branch information
lauriro committed Jun 14, 2024
1 parent 2a5984e commit 8c7b83d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
- run: npm install && npm i -g c8 jshint uglify-js
- run: c8 -r lcov -r text npm test
- run: c8 -r lcovonly -r text npm test
- run: npm run lint
- uses: coverallsapp/github-action@v2
name: Upload to coveralls.io
Expand Down Expand Up @@ -48,15 +48,15 @@ jobs:
with:
ref: ${{ github.ref }}
- run: |
git config gpg.ssh.allowedSignersFile ./allowed_signers
echo '${{ vars.RELEASE_SIGNERS }}' > ./allowed_signers
git config gpg.ssh.allowedSignersFile ./allowed_signers
git verify-tag -v ${{ github.ref_name }}
name: Verify release tag signature
- uses: actions/setup-node@v4
with:
registry-url: https://registry.npmjs.org/
- run: |
gh release create $TAG --title $TAG --notes "$(git tag -l --format='%(subject)%0a%0a%(body)' $TAG)"
gh release create $TAG --title $TAG --notes "$(git tag -l --format='%(subject)%0a%0a%(contents:body)' $TAG)"
gh run list --json databaseId -q '.[20:]|.[].databaseId' --limit 100 | xargs -I{} gh run delete "{}"
[[ "$TAG" =~ ^v[0-9]+\.[0-9]+\.[0-9]+$ ]] && echo "PUBLISH=latest" >> $GITHUB_ENV || echo "PUBLISH=next" >> $GITHUB_ENV
env:
Expand Down

0 comments on commit 8c7b83d

Please sign in to comment.