Skip to content

update readme

update readme #11

Workflow file for this run

name: Build and Push Latest Docker Image to GHCR
on:
push:
branches:
- main
jobs:
push_to_registry:
name: Build and Push Latest Docker Image to GHCR
runs-on: ubuntu-latest
steps:
- name: Check out the repo
uses: actions/checkout@v4
- name: Set up Docker Buildx
id: buildx
uses: docker/setup-buildx-action@v3
- name: Log in to the Container registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ secrets.GH_USERNAME }}
password: ${{ secrets.GH_TOKEN }}
- name: Build and push the latest Steel Browser image
run: |
docker build -t ghcr.io/steel-dev/steel-browser:latest .
docker push ghcr.io/steel-dev/steel-browser:latest