Skip to content

Commit

Permalink
meetup 7/11/24
Browse files Browse the repository at this point in the history
  • Loading branch information
Masterjx9 committed Jul 12, 2024
1 parent 7d76405 commit 6a98bb3
Showing 1 changed file with 12 additions and 37 deletions.
49 changes: 12 additions & 37 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,10 @@ jobs:
- name: Build the project
run: |
pyinstaller --noconfirm --onedir --windowed --icon "$(pwd)/content_scheduler/socialmediascheduler/logo.ico" \
--paths "$(pwd)/content_scheduler/socialmediascheduler/gui" \
--paths "$(pwd)/content_scheduler/socialmediascheduler/scheduler" \
--paths "$(pwd)/content_scheduler/socialmediascheduler/controller" \
pyinstaller --noconfirm --onedir --windowed --icon "$(pwd)/logo.ico" \
--paths "$(pwd)/gui" \
--paths "$(pwd)/scheduler" \
--paths "$(pwd)/controller" \
"manage.py"
- name: Copy additional files
Expand Down Expand Up @@ -67,24 +67,12 @@ jobs:
python -m pip install --upgrade pip
pip install pyinstaller
- name: List current directory
run: ls -R

- name: Echo current directory
run: echo $PWD

- name: List content_scheduler directory
run: ls -R content_scheduler

- name: List socialmediascheduler directory
run: ls -R content_scheduler/socialmediascheduler

- name: Build the project
run: |
pyinstaller --noconfirm --onedir --windowed --icon "$(pwd)/content_scheduler/socialmediascheduler/logo.ico" \
--paths "$(pwd)/content_scheduler/socialmediascheduler/gui" \
--paths "$(pwd)/content_scheduler/socialmediascheduler/scheduler" \
--paths "$(pwd)/content_scheduler/socialmediascheduler/controller" \
pyinstaller --noconfirm --onedir --windowed --icon "$(pwd)/logo.ico" \
--paths "$(pwd)/gui" \
--paths "$(pwd)/scheduler" \
--paths "$(pwd)/controller" \
"manage.py"
- name: Copy additional files
Expand Down Expand Up @@ -123,27 +111,14 @@ jobs:
python -m pip install --upgrade pip
pip install pyinstaller
- name: List current directory
run: ls -R

- name: Echo current directory
run: echo $PWD

- name: List content_scheduler directory
run: ls -R content_scheduler

- name: List socialmediascheduler directory
run: ls -R content_scheduler/socialmediascheduler

- name: Build the project
run: |
pyinstaller --noconfirm --onedir --windowed --icon "$(pwd)/content_scheduler/socialmediascheduler/logo.ico" \
--paths "$(pwd)/content_scheduler/socialmediascheduler/gui" \
--paths "$(pwd)/content_scheduler/socialmediascheduler/scheduler" \
--paths "$(pwd)/content_scheduler/socialmediascheduler/controller" \
pyinstaller --noconfirm --onedir --windowed --icon "$(pwd)/logo.ico" \
--paths "$(pwd)/gui" \
--paths "$(pwd)/scheduler" \
--paths "$(pwd)/controller" \
"manage.py"
- name: Copy additional files
run: |
cp sample.env dist/manage/sample.env
Expand Down

0 comments on commit 6a98bb3

Please sign in to comment.