Skip to content

Commit

Permalink
Improve deploy & test files
Browse files Browse the repository at this point in the history
  • Loading branch information
ronardcaktus committed Sep 19, 2024
1 parent 1c6fbce commit d4e0f5f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
ENV="production" ||
ENV="staging"
echo "env is $ENV"
inv $ENV image push --verbosity=0
inv $ENV image.push --verbosity=0
- uses: act10ns/slack@v1
with:
status: ${{ job.status }}
Expand All @@ -48,6 +48,7 @@ jobs:
if: always()
deploy:
runs-on: arc-runner-set # K8s self-hosted runner
needs: [build-push]
env:
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:

jobs:
test:
runs-on: arc-runner-set # K8s self hosted runner
runs-on: ubuntu-22.04 # standard (not self-hosted) runner
env:
DJANGO_SETTINGS_MODULE: hip.settings.dev
services:
Expand Down

0 comments on commit d4e0f5f

Please sign in to comment.