Skip to content

chore: add installation steps for macOs #4

chore: add installation steps for macOs

chore: add installation steps for macOs #4

Workflow file for this run

# https://docs.github.com/en/actions/publishing-packages/publishing-docker-images
name: Push
on:
push:
branches: [ master, main ]
jobs:
push_to_registry:
name: Push Docker image to Docker Hub
runs-on: ubuntu-latest
steps:
- name: Check out the repo
uses: actions/checkout@v4
- name: Log in to Docker Hub
uses: docker/login-action@v3
with:
username: overhangio
password: ${{ secrets.DOCKER_OVERHANGIO_PASSWORD }}
- name: Build and push Docker image
# https://github.com/docker/build-push-action
uses: docker/build-push-action@v5
with:
context: .
file: ./Dockerfile
push: true
tags: docker.io/overhangio/academy:latest