Skip to content

feat: update brand to beyond the pond #3

feat: update brand to beyond the pond

feat: update brand to beyond the pond #3

Workflow file for this run

name: Publish Docker Image
on:
push:
branches: [alumni-edition]
env:
REGISTRY: ghcr.io
IMAGE_NAME: jacobsalumni/jay:latest
PLATFORMS: linux/amd64
jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: docker/setup-qemu-action@v1
- uses: docker/setup-buildx-action@v1
- uses: docker/login-action@v1
with:
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
registry: ${{ env.REGISTRY }}
- uses: docker/build-push-action@v2
with:
tags: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
platforms: ${{ env.PLATFORMS }}
pull: true
push: true