Skip to content

Commit

Permalink
Push :dev labeled Docker images on each push to main (#149)
Browse files Browse the repository at this point in the history
  • Loading branch information
tomchop authored Feb 9, 2024
1 parent 2260de6 commit 0bb624c
Show file tree
Hide file tree
Showing 2 changed files with 45 additions and 24 deletions.
45 changes: 45 additions & 0 deletions .github/workflows/docker-build-dev.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
name: Publish :dev Docker image

on:
push:
branches:
- main

jobs:
push_to_registries:
name: Push :dev Docker image to DockerHub and GHCR
runs-on: ubuntu-latest
permissions:
packages: write
contents: read
steps:
- name: Check out the repo
uses: actions/checkout@v4

- name: Set up QEMU
uses: docker/setup-qemu-action@v3

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3

- name: Log in to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_TOKEN }}

- name: Log in to the Container registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Build and push Docker images
uses: docker/build-push-action@v5
with:
context: .
file: ./docker/prod/Dockerfile
push: true
platforms: linux/amd64,linux/arm64
tags: yetiplatform/yeti-frontend:dev,ghcr.io/${{ github.repository }}:dev
24 changes: 0 additions & 24 deletions .github/workflows/docker-build.yml

This file was deleted.

0 comments on commit 0bb624c

Please sign in to comment.