Skip to content

Commit

Permalink
SCHED-718: Fix workflows and Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
Sergio committed Jul 29, 2024
1 parent ad17197 commit 3acb41d
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,5 +29,5 @@ jobs:
heroku_app_name: ${{ secrets.HEROKU_APP_NAME }}

usedocker: true
env:
GH_PAT: ${{ secrets.GH_PAT }}
docker_build_args: |
GH_PAT: ${{ secrets.GH_PAT }}
2 changes: 1 addition & 1 deletion .github/workflows/pytest.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: Run tests
on: push
on: [push, pull_request]

jobs:
pytest:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/run.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: Run Scripts
on: push
on: [push, pull_request]
jobs:
run:
runs-on: ubuntu-latest
Expand Down
2 changes: 2 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ WORKDIR /home
# Manage dependencies
COPY ./requirements.txt /home/requirements.txt

ENV GH_PAT=$GH_PAT

RUN pip install --no-cache-dir --upgrade -r /home/requirements.txt

COPY ./scheduler /home/scheduler
Expand Down

0 comments on commit 3acb41d

Please sign in to comment.