feat: implement FernetBackend encryption backend (#3) (#14) #2
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 Please | |
| on: | |
| push: | |
| branches: | |
| - develop | |
| permissions: | |
| contents: write | |
| pull-requests: write | |
| issues: write | |
| jobs: | |
| release-please: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Run release-please | |
| uses: googleapis/release-please-action@v4 | |
| with: | |
| # Use PAT to allow created releases to trigger publish workflow | |
| # Create PAT with 'repo' scope and add as RELEASE_PLEASE_TOKEN secret | |
| # Falls back to GITHUB_TOKEN if PAT not configured (releases won't trigger other workflows) | |
| token: ${{ secrets.RELEASE_PLEASE_TOKEN || secrets.GITHUB_TOKEN }} | |
| config-file: release-please-config.json | |
| manifest-file: .release-please-manifest.json |