diff --git a/.forgejo/workflows/ci.yaml b/.forgejo/workflows/ci.yaml index 731a1f8..4c334fb 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 -s -H "Authorization: Bearer ${{ secrets.THETADEV_DE_WATCHTOWER_TOKEN }}" https://watchtower.thetadev.de/v1/update + curl -H "Authorization: Bearer ${{ secrets.THETADEV_DE_WATCHTOWER_TOKEN }}" https://watchtower.thetadev.de/v1/update diff --git a/CHANGELOG.md b/CHANGELOG.md index 879e1cd..f556d50 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,13 +3,6 @@ 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 6adb62d..52715d0 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,11 +7,7 @@ COPY package.json pnpm-lock.yaml run/entrypoint.sh ./ COPY prisma ./prisma # Setup pnpm, install Prisma CLI (for generating client) and install dependencies -RUN npm config set update-notifier false && \ - corepack enable && \ - pnpm i --prod && \ - pnpm audit fix && \ - npx prisma generate +RUN 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 89c0900..1f69a82 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "visitenbuch", - "version": "0.3.2", + "version": "0.3.1", "private": true, "license": "AGPL-3.0", "scripts": {