Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(ops): modify docker path to correct server directory #30

Merged
merged 2 commits into from
Mar 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
47 changes: 20 additions & 27 deletions .github/workflows/release-drafter.yml
Original file line number Diff line number Diff line change
@@ -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 }}
2 changes: 1 addition & 1 deletion apps/server/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
13 changes: 0 additions & 13 deletions docker-compose.yml

This file was deleted.

Loading