Skip to content

Commit

Permalink
ci: add node image to github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
Xyphyn committed Aug 2, 2024
1 parent 0cce117 commit 6b19b4f
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion .github/workflows/docker-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ github.token }}
- name: Build and push Docker image
- name: Build/push Bun image
uses: docker/build-push-action@v4
with:
context: .
Expand All @@ -43,3 +43,15 @@ jobs:
labels: ${{ steps.meta.outputs.labels }}
cache-from: type=gha
cache-to: type=gha,mode=max
target: bun
- name: Build/push Node image
uses: docker/build-push-action@v4
with:
context: .
platforms: linux/amd64,linux/arm64
push: true
tags: ${{ steps.meta.outputs.tags }}-node
labels: ${{ steps.meta.outputs.labels }}
cache-from: type=gha
cache-to: type=gha,mode=max
target: node

0 comments on commit 6b19b4f

Please sign in to comment.