Skip to content

refactor: Trying new approach #32

refactor: Trying new approach

refactor: Trying new approach #32

Workflow file for this run

name: Build and Push Docker Image
on:
push:
branches:
- main
- wip-github-actions
tags:
- 'v*.*.*'
jobs:
build-and-push:
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v2
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
- name: Login to Docker Hub
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Build and Push
uses: docker/build-push-action@v2
with:
context: .
file: ./Dockerfile
push: true
tags: yourusername/fern:latest
platforms: linux/amd64,linux/arm64,linux/arm/v7