Compare commits
3 Commits
2cf832eeac
..
v0.1.5
| Author | SHA1 | Date | |
|---|---|---|---|
| 8ea12f39d2 | |||
| 3d87f3e1dc | |||
| 04dfdfa378 |
@@ -169,6 +169,12 @@ jobs:
|
|||||||
IMAGE_TAG="${{ steps.version.outputs.new_version }}"
|
IMAGE_TAG="${{ steps.version.outputs.new_version }}"
|
||||||
sed -i "s|image: docker.notsosm.art/euchre-camp:[0-9.]*|image: docker.notsosm.art/euchre-camp:${IMAGE_TAG}|" docker-compose.yml
|
sed -i "s|image: docker.notsosm.art/euchre-camp:[0-9.]*|image: docker.notsosm.art/euchre-camp:${IMAGE_TAG}|" docker-compose.yml
|
||||||
|
|
||||||
|
# Copy the updated docker-compose.yml to the deployment location
|
||||||
|
# The runners are on the same Docker server where the container is running
|
||||||
|
sudo mkdir -p /home/euchre_camp
|
||||||
|
sudo cp docker-compose.yml /home/euchre_camp/
|
||||||
|
sudo chown -R euchre:euchre /home/euchre_camp
|
||||||
|
|
||||||
# Pull and restart the dev container
|
# Pull and restart the dev container
|
||||||
cd /home/euchre_camp
|
cd /home/euchre_camp
|
||||||
docker-compose pull app
|
docker-compose pull app
|
||||||
|
|||||||
@@ -1,3 +1,37 @@
|
|||||||
|
## [0.1.5] - 2026-04-26
|
||||||
|
|
||||||
|
### Patch Changes
|
||||||
|
|
||||||
|
- ci: fix deployment directory path in release workflow
|
||||||
|
|
||||||
|
## [0.1.4] - 2026-04-02
|
||||||
|
|
||||||
|
### Patch Changes
|
||||||
|
|
||||||
|
- ci: remove acceptance tests and add dev deployment
|
||||||
|
- fix(tests): resolve password validation, csv upload, and admin auth issues
|
||||||
|
- fix(ci): correct playwright config paths and add env example files
|
||||||
|
- fix(ci): use existing PostgreSQL server at dhg.lol
|
||||||
|
- fix(ci): use PostgreSQL in acceptance-tests with dev credentials
|
||||||
|
- feat(ci): build custom Docker images for Gitea Actions compatibility
|
||||||
|
- fix(tests): add @prisma/client mock for test isolation
|
||||||
|
- fix(ci): add prisma generate step to unit-tests job
|
||||||
|
- fix: downgrade ESLint to v8.57.1 for LSP compatibility
|
||||||
|
- fix: improve TypeScript types for better IDE code hinting
|
||||||
|
- feat: migrate to ESLint flat config (eslint.config.js)
|
||||||
|
- Revert "fix: downgrade ESLint to v8.x for .eslintrc.json compatibility"
|
||||||
|
- fix: downgrade ESLint to v8.x for .eslintrc.json compatibility
|
||||||
|
- fix: update PR workflow to exclude e2e tests from unit test phase
|
||||||
|
- fix: avoid global mock clearing in EditTournamentForm tests
|
||||||
|
- fix: avoid global mock clearing in Navigation tests
|
||||||
|
- fix: add DOM cleanup to bun-setup.ts
|
||||||
|
- fix: disable test isolation in bunfig.toml
|
||||||
|
- refactor: improve test structure for Bun compatibility
|
||||||
|
- feat: update CI/CD to use Bun
|
||||||
|
- feat: migrate from npm to Bun
|
||||||
|
- docs: update TODO list with recent fix
|
||||||
|
- fix: add defensive checks to prisma.ts to prevent build failures
|
||||||
|
|
||||||
## [0.1.3] - 2026-04-01
|
## [0.1.3] - 2026-04-01
|
||||||
|
|
||||||
### Patch Changes
|
### Patch Changes
|
||||||
|
|||||||
+1
-1
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "euchre_camp",
|
"name": "euchre_camp",
|
||||||
"version": "0.1.3",
|
"version": "0.1.5",
|
||||||
"private": true,
|
"private": true,
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"dev": "NEXT_PUBLIC_GIT_COMMIT=$(git rev-parse --short HEAD) next dev",
|
"dev": "NEXT_PUBLIC_GIT_COMMIT=$(git rev-parse --short HEAD) next dev",
|
||||||
|
|||||||
Reference in New Issue
Block a user