summaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorGravatar Cameron Cross2024-10-23 10:43:51 +1100
committerGravatar Nikias Bassen2025-02-28 13:40:05 +0100
commit437e5134850c5090720ddb8c0c78eb9e75b7a761 (patch)
tree478c5e5d09d568483381ba6ab54d54d14a4208e0 /.github
parent866b6b773c1326d2b407f04c80aab3b43db02468 (diff)
downloadidevicerestore-437e5134850c5090720ddb8c0c78eb9e75b7a761.tar.gz
idevicerestore-437e5134850c5090720ddb8c0c78eb9e75b7a761.tar.bz2
[docker] Add CI to build and archive docker image
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/build.yml13
1 files changed, 13 insertions, 0 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index 3b7d0dc..7028766 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -308,3 +308,16 @@ jobs:
with:
name: idevicerestore-latest_${{ matrix.arch }}-${{ env.dest }}
path: idevicerestore.tar
+ build-docker:
+ runs-on: ubuntu-latest
+ steps:
+ - uses: actions/checkout@v4
+ - name: build
+ run: |
+ pushd docker && ./build.sh; popd
+ docker image save -o idevicerestore-docker.tar idevicerestore-docker
+ - name: publish artifact
+ uses: actions/upload-artifact@v4
+ with:
+ name: idevicerestore-latest_docker
+ path: idevicerestore-docker.tar