fix: Add permissions section to container job in GitHub Actions workflow #199
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: Build and push container images | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - main | |
| schedule: | |
| - cron: '0 0 * * *' | |
| env: | |
| REGISTRY: ghcr.io | |
| permissions: | |
| contents: read | |
| packages: write | |
| jobs: | |
| container: | |
| name: container | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| packages: write | |
| steps: | |
| - name: Check out the repo | |
| uses: actions/checkout@v3 | |
| - name: Set up QEMU | |
| uses: docker/setup-qemu-action@v2 | |
| - name: Set up Docker Buildx | |
| uses: docker/setup-buildx-action@v2 | |
| - name: Log in to the container registry | |
| uses: docker/login-action@v2 | |
| with: | |
| registry: ${{ env.REGISTRY }} | |
| username: ${{ github.actor }} | |
| password: ${{ secrets.GITHUB_TOKEN }} | |
| - name: Extract metadata (devcontainer-core) | |
| id: core_meta | |
| uses: docker/metadata-action@v4 | |
| with: | |
| images: ${{ env.REGISTRY }}/lightprotocol/devcontainer-core | |
| - name: Build and push image (devcontainer-core) | |
| uses: docker/build-push-action@v4 | |
| with: | |
| context: devcontainer-core | |
| platforms: linux/amd64,linux/arm64 | |
| push: true | |
| tags: ${{ steps.core_meta.outputs.tags }} | |
| labels: ${{ steps.core_meta.outputs.labels }} | |
| - name: Extract metadata (devcontainer) | |
| id: devcontainer_meta | |
| uses: docker/metadata-action@v4 | |
| with: | |
| images: ${{ env.REGISTRY }}/lightprotocol/devcontainer | |
| - name: Build and push image (devcontainer) | |
| uses: docker/build-push-action@v4 | |
| with: | |
| context: devcontainer | |
| platforms: linux/amd64,linux/arm64 | |
| push: true | |
| build-args: | | |
| BASE_IMAGE=${{ steps.core_meta.outputs.tags }} | |
| tags: ${{ steps.devcontainer_meta.outputs.tags }} | |
| labels: ${{ steps.devcontainer_meta.outputs.labels }} | |
| - name: Extract metadata (solana-test-validator) | |
| id: validator_meta | |
| uses: docker/metadata-action@v4 | |
| with: | |
| images: ${{ env.REGISTRY }}/lightprotocol/solana-test-validator | |
| - name: Build and push image (solana-test-validator) | |
| uses: docker/build-push-action@v4 | |
| with: | |
| context: solana-test-validator | |
| platforms: linux/amd64,linux/arm64 | |
| push: true | |
| build-args: | | |
| BASE_IMAGE=${{ steps.devcontainer_meta.outputs.tags }} | |
| tags: ${{ steps.validator_meta.outputs.tags }} | |
| labels: ${{ steps.validator_meta.outputs.labels }} |