浏览代码

Added build scripts. Pushed version 2.2.2

Paweł Malak 3 年之前
父节点
当前提交
c2e81832a9
共有 6 个文件被更改,包括 13 次插入5 次删除
  1. 2 0
      .dev/build_latest.sh
  2. 6 0
      .dev/build_multiarch.sh
  3. 1 1
      .env
  4. 1 2
      .gitignore
  5. 2 1
      CHANGELOG.md
  6. 1 1
      client/.env

+ 2 - 0
.dev/build_latest.sh

@@ -0,0 +1,2 @@
+docker build -t pawelmalak/flame -t "pawelmalak/flame:$1" -f .docker/Dockerfile "$2" \
+  && docker push pawelmalak/flame && docker push "pawelmalak/flame:$1"

+ 6 - 0
.dev/build_multiarch.sh

@@ -0,0 +1,6 @@
+docker buildx build \
+  --platform linux/arm/v7,linux/arm64,linux/amd64 \
+  -f .docker/Dockerfile.multiarch \
+  -t pawelmalak/flame:multiarch \
+  -t "pawelmalak/flame:multiarch$1" \
+  --push "$2"

+ 1 - 1
.env

@@ -1,5 +1,5 @@
 PORT=5005
 NODE_ENV=development
-VERSION=2.2.1
+VERSION=2.2.2
 PASSWORD=flame_password
 SECRET=e02eb43d69953658c6d07311d6313f2d4467672cb881f96b29368ba1f3f4da4b

+ 1 - 2
.gitignore

@@ -1,5 +1,4 @@
 node_modules
 data
 public
-!client/public
-build.sh
+!client/public

+ 2 - 1
CHANGELOG.md

@@ -1,7 +1,8 @@
-### v2.2.2 (2022-02-TBA)
+### v2.2.2 (2022-03-21)
 - Added option to get user location directly from the app ([#287](https://github.com/pawelmalak/flame/issues/287))
 - Fixed bug with local search not working when using prefix ([#289](https://github.com/pawelmalak/flame/issues/289))
 - Fixed bug with app description not updating when using custom icon ([#310](https://github.com/pawelmalak/flame/issues/310))
+- Changed permissions to some files and directories created by Flame
 - Changed some of the settings tabs
 
 ### v2.2.1 (2022-01-08)

+ 1 - 1
client/.env

@@ -1 +1 @@
-REACT_APP_VERSION=2.2.1
+REACT_APP_VERSION=2.2.2