9 lines
222 B
Bash
Executable File
9 lines
222 B
Bash
Executable File
#!/bin/sh
|
|
|
|
rm app/src/main/resources/css-manifest.json
|
|
rm app/src/main/resources/static/styles*
|
|
|
|
yarn --cwd css run css-purge \
|
|
&& docker build -t hubv/simplenotes:latest . \
|
|
&& docker push hubv/simplenotes:latest
|