diff --git a/.forgejo/workflows/ci.yaml b/.forgejo/workflows/ci.yaml index 4c334fb..731a1f8 100644 --- a/.forgejo/workflows/ci.yaml +++ b/.forgejo/workflows/ci.yaml @@ -65,7 +65,7 @@ jobs: run: | { echo 'CHANGELOG<> "$GITHUB_ENV" - name: 🎉 Publish release @@ -78,4 +78,4 @@ jobs: - name: 🚀 Deploy to server if: ${{ startsWith(github.ref, 'refs/tags/v') }} run: | - curl -H "Authorization: Bearer ${{ secrets.THETADEV_DE_WATCHTOWER_TOKEN }}" https://watchtower.thetadev.de/v1/update + curl -s -H "Authorization: Bearer ${{ secrets.THETADEV_DE_WATCHTOWER_TOKEN }}" https://watchtower.thetadev.de/v1/update diff --git a/CHANGELOG.md b/CHANGELOG.md index f556d50..879e1cd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,13 @@ All notable changes to this project will be documented in this file. +## [v0.3.2](https://code.thetadev.de/HSA/Visitenbuch/compare/v0.3.1..v0.3.2) - 2024-05-13 + +### 🐛 Bug Fixes + +- Disable NPM update notifier - ([fb958c0](https://code.thetadev.de/HSA/Visitenbuch/commit/fb958c0c5592229037e50407af9f79d0894eb369)) + + ## [v0.3.1](https://code.thetadev.de/HSA/Visitenbuch/compare/v0.3.0..v0.3.1) - 2024-05-13 ### 🚀 Features diff --git a/Dockerfile b/Dockerfile index 52715d0..6adb62d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,7 +7,11 @@ COPY package.json pnpm-lock.yaml run/entrypoint.sh ./ COPY prisma ./prisma # Setup pnpm, install Prisma CLI (for generating client) and install dependencies -RUN corepack enable && pnpm i --prod && pnpm audit fix && npx prisma generate +RUN npm config set update-notifier false && \ + corepack enable && \ + pnpm i --prod && \ + pnpm audit fix && \ + npx prisma generate # copy built SvelteKit app to /app COPY build ./ diff --git a/package.json b/package.json index 1f69a82..89c0900 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "visitenbuch", - "version": "0.3.1", + "version": "0.3.2", "private": true, "license": "AGPL-3.0", "scripts": {