Move scripts to folder
parent
490be27b34
commit
7988455394
|
@ -92,7 +92,7 @@ jobs:
|
|||
|
||||
- name: Run tests
|
||||
run: |
|
||||
./apps/memories/ci-test.sh
|
||||
./apps/memories/scripts/ci-test.sh
|
||||
|
||||
- uses: actions/upload-artifact@v3
|
||||
if: always()
|
||||
|
@ -165,7 +165,7 @@ jobs:
|
|||
|
||||
- name: Run tests
|
||||
run: |
|
||||
./apps/memories/ci-test.sh
|
||||
./apps/memories/scripts/ci-test.sh
|
||||
|
||||
- uses: actions/upload-artifact@v3
|
||||
if: always()
|
||||
|
@ -224,7 +224,7 @@ jobs:
|
|||
|
||||
- name: Run tests
|
||||
run: |
|
||||
./apps/memories/ci-test.sh
|
||||
./apps/memories/scripts/ci-test.sh
|
||||
|
||||
- uses: actions/upload-artifact@v3
|
||||
if: always()
|
||||
|
|
|
@ -25,7 +25,7 @@ jobs:
|
|||
run: |
|
||||
make dev-setup
|
||||
make build-js-production
|
||||
./bundle.sh
|
||||
./scripts/bundle.sh
|
||||
|
||||
- name: Upload app tarball to release
|
||||
uses: svenstaro/upload-release-action@v2
|
||||
|
|
2
Makefile
2
Makefile
|
@ -4,7 +4,7 @@ all: dev-setup lint build-js-production test
|
|||
dev-setup: clean clean-dev npm-init get-exiftool
|
||||
|
||||
get-exiftool:
|
||||
./get-exiftool.sh
|
||||
sh scripts/get-exiftool.sh
|
||||
|
||||
npm-init:
|
||||
npm ci
|
||||
|
|
|
@ -11,7 +11,7 @@ rm -f memories/appinfo/screencap* memories/js/*.map
|
|||
rm -rf memories.tar.gz
|
||||
|
||||
cd memories
|
||||
sh "$od/get-exiftool.sh"
|
||||
sh "$od/scripts/get-exiftool.sh"
|
||||
cd ..
|
||||
|
||||
tar -zvcf memories.tar.gz memories/
|
Loading…
Reference in New Issue