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 335c47c commit e72854f
Showing 1 changed file with 17 additions and 1 deletion.
18 changes: 17 additions & 1 deletion .github/workflows/no-publish-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,12 @@ jobs:
context: .
push: false
tags: marlin-build:latest

outputs: type=docker,dest=/tmp/myimage.tar # export docker image
- name: Upload artifact
uses: actions/upload-artifact@v2
with:
name: myimage
path: /tmp/myimage.tar

firmware_build:
needs: docker_image_build
Expand All @@ -38,8 +43,19 @@ jobs:
REGISTRY: ghcr.io
UPLOAD_DIR: ET4000PLUS-K9
steps:
- name: Download artifact
uses: actions/download-artifact@v2
with:
name: myimage
path: /tmp
- name: Load image
run: |
docker load --input /tmp/myimage.tar
docker image ls -a
- name: Check out repo
uses: actions/checkout@v2

- name: Compile firmware
run: |
docker run \
Expand Down

0 comments on commit e72854f

Please sign in to comment.