diff --git a/.github/workflows/release-drafter.yml b/.github/workflows/release-drafter.yml index 74daac24..4268136d 100644 --- a/.github/workflows/release-drafter.yml +++ b/.github/workflows/release-drafter.yml @@ -1,28 +1,21 @@ -name-template: "v$RESOLVED_VERSION" -tag-template: "v$RESOLVED_VERSION" -categories: - - title: "๐Ÿš€ Features" - labels: - - "kind/feature" - - title: "๐Ÿ› Bug Fixes" - labels: - - "kind/fix" - - title: "Maintenance" - labels: - - "kind/refactor" - - "kind/chore" - - "kind/docs" - - title: "Dependencies" - labels: - - "kind/dependencies" -change-template: "- $TITLE @$AUTHOR (#$NUMBER)" -change-title-escapes: '\<*_&' -version-resolver: - minor: - labels: - - "kind/feature" - default: patch -template: | - ## Whatโ€™s Changed +name: Release Drafter - $CHANGES +on: + push: + branches: [main] + +permissions: + contents: write + pull-requests: read + +concurrency: + group: ${{ github.workflow }}-${{ github.event_name }}-${{ github.ref }} + cancel-in-progress: true + +jobs: + main: + runs-on: ubuntu-latest + steps: + - uses: release-drafter/release-drafter@65c5fb495d1e69aa8c08a3317bc44ff8aabe9772 # v5.24.0 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/apps/server/Dockerfile b/apps/server/Dockerfile index d5109261..80f255ab 100644 --- a/apps/server/Dockerfile +++ b/apps/server/Dockerfile @@ -20,4 +20,4 @@ RUN pnpm fetch RUN pnpm install -r --offline RUN pnpm build -CMD node dist/main.js +CMD node apps/server/dist/main.js diff --git a/docker-compose.yml b/docker-compose.yml deleted file mode 100644 index a06fe511..00000000 --- a/docker-compose.yml +++ /dev/null @@ -1,13 +0,0 @@ -version: '3.7' -services: - postgres: - image: postgres:15.4-alpine - restart: always - env_file: - - .env -# environment: -# POSTGRES_DB: ${POSTGRES_DB} -# POSTGRES_USER: ${POSTGRES_USER} -# POSTGRES_PASSWORD: ${POSTGRES_PASSWORD} - ports: - - "5432:5432"