Push Images to ghcr #28
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: Push Images to ghcr | |
| on: | |
| push: | |
| branches: | |
| - eigenda-develop | |
| tags: | |
| - "op-*/v*-eigenda.*" # Will match tags like op-node/v1.11.1-eigenda.1, op-batcher/v1.12.3-eigenda.2, etc. | |
| jobs: | |
| build-and-push: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| packages: write | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Set up Docker Buildx | |
| uses: docker/setup-buildx-action@v2 | |
| - name: Login to GitHub Container Registry | |
| uses: docker/login-action@v2 | |
| with: | |
| registry: ghcr.io | |
| username: ${{ github.actor }} | |
| password: ${{ secrets.GITHUB_TOKEN }} | |
| - name: Setup multi-arch docker builder | |
| run: make docker-builder | |
| - run: make layr-labs-docker-push |