Fix role permissions update silently failing with many maps #4
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Release | |
| on: | |
| push: | |
| tags: | |
| - 'nagvis-*' | |
| jobs: | |
| release: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: write | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Extract version from tag | |
| id: version | |
| run: echo "version=${GITHUB_REF_NAME#nagvis-}" >> $GITHUB_OUTPUT | |
| - name: Build tarball | |
| run: | | |
| git archive \ | |
| --format=tar \ | |
| --prefix=nagvis-${{ steps.version.outputs.version }}/ \ | |
| HEAD \ | |
| | gzip > nagvis-${{ steps.version.outputs.version }}.tar.gz | |
| - name: Generate checksums | |
| run: | | |
| sha256sum nagvis-${{ steps.version.outputs.version }}.tar.gz \ | |
| > nagvis-${{ steps.version.outputs.version }}.tar.gz.sha256 | |
| - name: Import GPG key | |
| run: | | |
| echo "${{ secrets.GPG_PRIVATE_KEY }}" | gpg --batch --import | |
| FINGERPRINT=$(gpg --list-secret-keys --with-colons | grep '^fpr' | head -1 | cut -d: -f10) | |
| echo "${FINGERPRINT}:6:" | gpg --import-ownertrust | |
| - name: Sign tarball | |
| run: | | |
| gpg --batch \ | |
| --yes \ | |
| --local-user "${{ secrets.GPG_KEY_ID }}" \ | |
| --detach-sign \ | |
| --armor \ | |
| nagvis-${{ steps.version.outputs.version }}.tar.gz | |
| - name: Create GitHub Release | |
| uses: softprops/action-gh-release@v2 | |
| with: | |
| name: NagVis ${{ steps.version.outputs.version }} | |
| draft: true | |
| files: | | |
| nagvis-${{ steps.version.outputs.version }}.tar.gz | |
| nagvis-${{ steps.version.outputs.version }}.tar.gz.asc | |
| nagvis-${{ steps.version.outputs.version }}.tar.gz.sha256 |