Compare commits
3 commits
d0cde9f3d8
...
d7ecac657f
Author | SHA1 | Date | |
---|---|---|---|
d7ecac657f | |||
fb958c0c55 | |||
215414fb87 |
4 changed files with 15 additions and 4 deletions
|
@ -65,7 +65,7 @@ jobs:
|
|||
run: |
|
||||
{
|
||||
echo 'CHANGELOG<<END_OF_FILE'
|
||||
git show -s --format=%N "${{ github.ref }}" | tail -n +4 | awk 'BEGIN{RS="-----BEGIN PGP SIGNATURE-----"} NR==1{printf $0}'
|
||||
git show -s --format=%N "${{ github.ref_name }}" | tail -n +4 | awk 'BEGIN{RS="-----BEGIN PGP SIGNATURE-----"} NR==1{printf $0}'
|
||||
echo END_OF_FILE
|
||||
} >> "$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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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 ./
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "visitenbuch",
|
||||
"version": "0.3.1",
|
||||
"version": "0.3.2",
|
||||
"private": true,
|
||||
"license": "AGPL-3.0",
|
||||
"scripts": {
|
||||
|
|
Loading…
Reference in a new issue