Skip to content

Commit

Permalink
Update deploy
Browse files Browse the repository at this point in the history
  • Loading branch information
adnankarol authored and adnankarol committed Aug 1, 2024
1 parent a207795 commit 8f4f868
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,20 +3,21 @@ name: Publish Package
on:
push:
branches:
- 'main'
- main # Triggers only on pushes to the main branch

jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v3 # Latest version, compatible with Node.js 20

- name: Set up Python
uses: actions/setup-python@v4
uses: actions/setup-python@v4 # Latest version, compatible with Node.js 20
with:
python-version: '3.10'
python-version: '3.10' # Adjust to your preferred Python version

- name: Install dependencies
run: |
python -m pip install --upgrade pip
Expand Down

0 comments on commit 8f4f868

Please sign in to comment.