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