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

fix(cicd): Remove .github/ trigger as it did not work, manually fire triggers #111

Merged
merged 1 commit into from
Oct 18, 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
2 changes: 1 addition & 1 deletion .github/workflows/merge-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
secrets: inherit
needs: [get-pr-info ]
with:
triggers: ('backend/' 'frontend/' '.github/')
triggers: ('backend/' 'frontend/')
environment: test
tag: ${{ needs.get-pr-info.outputs.pr }}
params:
Expand Down
2 changes: 0 additions & 2 deletions backend/sites/Dockerfile.local
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,5 @@ RUN apk add postgresql-client
# Expose port - mostly a convention, for readability
EXPOSE 4005

# Start up command

# Start up command
ENTRYPOINT ["sh","/app/local_start.sh"]
1 change: 0 additions & 1 deletion frontend/site-registry/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ RUN mkdir -p node_modules/.cache && chmod -R 777 node_modules/.cache

# add app files
COPY . ./

RUN npm run build

# Stage 1, based on Nginx, to have only the compiled app, ready for production with Nginx
Expand Down
Loading