Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
schmttc authored Apr 17, 2024
1 parent 387d696 commit 4687b0b
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/no-publish-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,20 @@ jobs:
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1

- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@v3
with:
images: ${{ env.REGISTRY }}/${{ github.repository_owner }}/${{ github.event.repository.name }}

- uses: docker/build-push-action@v3
with:
context: .
push: false
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}

firmware_build:
name: Build and push firmware
runs-on: ubuntu-latest
Expand All @@ -38,6 +52,8 @@ jobs:
REGISTRY: ghcr.io
UPLOAD_DIR: ET4000PLUS-K9
steps:
- name: Check out repo
uses: actions/checkout@v2
- name: Compile firmware
run: |
docker run \
Expand Down

0 comments on commit 4687b0b

Please sign in to comment.