# semantic-trusted-release **Repository Path**: mirrors_electron/semantic-trusted-release ## Basic Information - **Project Name**: semantic-trusted-release - **Description**: No description available - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2025-10-12 - **Last Updated**: 2026-03-28 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Semantic Trusted Release GitHub Action > Trusted publishing via Semantic Release in a simple action ## Example ```yaml name: Publish on: [push] permissions: id-token: write # for publishing releases contents: write # for making github release pull-requests: write # for commenting release version issues: write # for commenting release version jobs: build: runs-on: ubuntu-latest environment: npm steps: # For security please pin this to the SHA of the latest release # - https://github.com/actions/checkout/releases/latest - uses: actions/checkout@{sha} with: # This is key, ensure that you set this on your checkout persist-credentials: false # For security please pin this to the SHA of the latest release # - https://github.com/electron/semantic-trusted-release/releases/latest - uses: electron/semantic-trusted-release@{sha} with: github-token: ${{ secrets.GITHUB_TOKEN }} ```