Skip to content
Open
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
16 changes: 4 additions & 12 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,26 +27,18 @@ env:
CONTAINER_NAME_CRON: "care-celery-beat"

jobs:
test:
name: Test
uses: ./.github/workflows/reusable-test.yml
secrets:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
with:
event_name: ${{ github.event_name }}

build:
needs: test
name: Build ${{ matrix.platform }}
runs-on: ${{ matrix.runner }}
strategy:
fail-fast: false
matrix:
include:
- platform: linux/amd64
runner: ubuntu-24.04
runner: ubuntu-latest
- platform: linux/arm64
runner: ubuntu-24.04-arm
runner: ubuntu-latest
steps:
- uses: actions/checkout@v4

Expand Down Expand Up @@ -180,7 +172,7 @@ jobs:
needs: merge-manifests
if: startsWith(github.event.ref, 'refs/tags/v')
name: Notify release
runs-on: ubuntu-24.04-arm
runs-on: ubuntu-latest
steps:
- name: Notify release
run: |
Expand All @@ -190,7 +182,7 @@ jobs:
needs: merge-manifests
if: github.ref == 'refs/heads/develop'
name: Deploy to ECS API Egov
runs-on: ubuntu-24.04-arm
runs-on: ubuntu-latest
environment:
name: Staging-egov
url: https://careapi.ohc.network
Expand Down
2 changes: 1 addition & 1 deletion Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ python-slugify = "==8.0.4"
pywebpush = "==2.0.1"
redis = { extras = ["hiredis"], version = "==5.2.1" }
redis-om = "==0.3.3"
requests = "==2.32.3"
requests = "==2.32.4"
simplejson = "==3.19.3"
sentry-sdk = "==2.18.0"
whitenoise = "==6.8.2"
Expand Down
Loading