chore: bump bitcoind and dogecoind to debian13 and update job permiss… #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 dogecoind image | |
| on: | |
| push: | |
| branches: [main] | |
| paths: ["images/dogecoind/**"] | |
| pull_request: | |
| branches: [main] | |
| paths: ["images/dogecoind/**"] | |
| # Declare default permissions as read only. | |
| permissions: read-all | |
| jobs: | |
| call: | |
| uses: ./.github/workflows/release-image.yml | |
| permissions: | |
| actions: read | |
| checks: read | |
| contents: read | |
| deployments: read | |
| discussions: read | |
| issues: read | |
| models: read | |
| pages: read | |
| pull-requests: read | |
| repository-projects: read | |
| statuses: read | |
| security-events: read | |
| artifact-metadata: read | |
| packages: write | |
| id-token: write | |
| attestations: write | |
| with: | |
| image: ghcr.io/${{ github.repository }}/dogecoind | |
| context: images/dogecoind | |
| dockerfile: Dockerfile | |
| secrets: | |
| registry-password: ${{ secrets.GITHUB_TOKEN }} |