diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index eebb817d8..4d8870cd9 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -1,8 +1,8 @@ name: "Release" on: - # push: - # branches: [ "main" ] + push: + branches: [ "main" ] release: types: [ published ] diff --git a/backend/src/test/kotlin/fr/gouv/gmampa/rapportnav/infrastructure/database/AbstractDBTests.kt b/backend/src/test/kotlin/fr/gouv/gmampa/rapportnav/infrastructure/database/AbstractDBTests.kt index 615187a8b..d9a644d00 100644 --- a/backend/src/test/kotlin/fr/gouv/gmampa/rapportnav/infrastructure/database/AbstractDBTests.kt +++ b/backend/src/test/kotlin/fr/gouv/gmampa/rapportnav/infrastructure/database/AbstractDBTests.kt @@ -43,7 +43,7 @@ abstract class AbstractDBTests { return "jdbc:postgresql://" + container.containerIpAddress + ":" + container.getMappedPort( PostgreSQLContainer.POSTGRESQL_PORT, - ).toString() + "/testdb?user=postgres&password=postgres" + ).toString() + "/testdb" } } }