Skip to content

Commit

Permalink
Merge branch 'staging'
Browse files Browse the repository at this point in the history
  • Loading branch information
spwoodcock committed Nov 8, 2023
2 parents 761366e + bffc2fe commit dbeeb9d
Show file tree
Hide file tree
Showing 9 changed files with 509 additions and 8 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/build_and_deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -94,10 +94,13 @@ jobs:
# Migrate db first, so api works
docker compose up migrations --exit-code-from migrations
# Run without migrations (give exit code 0)
# Run without migrations (give exit code 0), or api
docker compose up -d \
--no-deps --wait --wait-timeout 60 \
central-db central central-proxy s3 api
central-db central central-proxy s3
# Start api attached to view logs
docker compose up --no-deps --wait --wait-timeout 60 api
smoke-test-frontend:
runs-on: ubuntu-latest
Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/build_ci_img.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,5 +31,7 @@ jobs:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
gh extension install actions/gh-actions-cache
gh actions-cache delete image-cache-${{ runner.os }} -R \
${{ github.repository }} -B ${{ github.ref_name }} --confirm
gh actions-cache delete image-cache-${{ runner.os }}
-R ${{ github.repository }} \
-B ${{ github.ref_name }} \
--confirm || true
4 changes: 0 additions & 4 deletions .github/workflows/tag_build.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,6 @@
name: 🔧 Build Tag & Release Images

on:
# Any tag push
push:
tags:
- "*"
# All releases
release:
types: [published]
Expand Down
1 change: 1 addition & 0 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ repos:
--ignore-unknown,
--no-error-on-unmatched-pattern,
"!chart/**",
"!CHANGELOG.md",
"!src/frontend/pnpm-lock.yaml",
]

Expand Down
Loading

0 comments on commit dbeeb9d

Please sign in to comment.