Skip to content

Commit

Permalink
Fix the uses
Browse files Browse the repository at this point in the history
  • Loading branch information
ltan02 committed Oct 21, 2023
1 parent bf234a6 commit d23c265
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 6 deletions.
2 changes: 0 additions & 2 deletions .github/workflows/backend/python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,6 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4

- name: Set up Python ${{ inputs.python_verison }}
uses: actions/setup-python@v4
with:
Expand Down
15 changes: 11 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,15 @@ on:
workflow_dispatch:

jobs:
python:
uses: ubclaunchpad/microvan/.github/workflows/backend/python.yml
secrets:
django_secret: ${{ secrets.DJANGO_SECRET }}
build:
runs-on: ubuntu-latest

steps:
- name: Check out code
uses: actions/checkout@v4

- name: Run Python workflow
uses: ubclaunchpad/microvan/.github/workflows/backend/python.yml@main
with:
django_secret: ${{ secrets.DJANGO_SECRET }}

0 comments on commit d23c265

Please sign in to comment.