Skip to content

Commit

Permalink
use github runner
Browse files Browse the repository at this point in the history
  • Loading branch information
cmiller01 committed Nov 11, 2024
1 parent 5d1b7a8 commit eac027c
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions .github/workflows/docker-build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,15 @@ on:

jobs:
build:
runs-on: self-hosted
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Build Docker image
run: docker build -t nextjs-app:latest .
uses: docker/build-push-action@v6
with:
context: .
push: false
tags: nextjs-app:latest
cache-from: type=gha
cache-to: type=gha,mode=max

0 comments on commit eac027c

Please sign in to comment.