simple-c2pa

This is a fork of https://gitlab.com/guardianproject/proofmode/simple-c2pa
git clone git://archive.git.mtrnord.blog/mtrnords-photography-manager/simple-c2pa.git
Log | Files | Refs | README | LICENSE

commit 54ae46758bda999cda4798d3e0ef1b0cc15e8005
parent a89dba4852d22c51d11d1a65335bcc6c20351f97
Author: Darren Clarke <darren@redaranj.com>
Date:   Wed,  8 Nov 2023 14:23:31 +0100

Update CI paths

Diffstat:
Mmobile/android/.gitlab-ci.yml | 5+++--
Mmobile/apple/.gitlab-ci.yml | 7++++---
2 files changed, 7 insertions(+), 5 deletions(-)

diff --git a/mobile/android/.gitlab-ci.yml b/mobile/android/.gitlab-ci.yml @@ -22,7 +22,8 @@ before_script: build_android: stage: build script: - - ./mobile/android/build.sh + - pwd + - ./build.sh artifacts: paths: - - ./mobile/android/out/ + - ./out/ diff --git a/mobile/apple/.gitlab-ci.yml b/mobile/apple/.gitlab-ci.yml @@ -12,8 +12,9 @@ variables: before_script: - echo "started by ${GITLAB_USER_NAME}" - brew install rust - - mkdir -p ./mobile/apple/out - - touch ./mobile/apple/out/test123.txt + - pwd + - mkdir -p ./out + - touch ./out/test123.txt build_apple: extends: @@ -23,7 +24,7 @@ build_apple: - echo "running scripts in the build job" artifacts: paths: - - ./mobile/apple/out/ + - ./out/ test_apple: extends: