Skip to content

Commit cfd8f21

Browse files
updated workflow dir
1 parent 290bab6 commit cfd8f21

File tree

4 files changed

+18
-18
lines changed

4 files changed

+18
-18
lines changed

.github/workflows/x-bot-daily.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,29 +3,29 @@ name: X-Bot Daily Post
33
on:
44
schedule:
55
# Run at 9 AM UTC every day
6-
- cron: '0 9 * * *'
6+
- cron: "0 9 * * *"
77
# Allow manual triggering for testing
88
workflow_dispatch:
99

1010
jobs:
1111
post-year-progress:
1212
runs-on: ubuntu-latest
1313
environment: Production
14-
14+
1515
steps:
1616
- name: Checkout repository
1717
uses: actions/checkout@v3
18-
18+
1919
- name: Set up Python
2020
uses: actions/setup-python@v4
2121
with:
22-
python-version: '3.10'
23-
22+
python-version: "3.10"
23+
2424
- name: Install dependencies
2525
run: |
2626
python -m pip install --upgrade pip
27-
pip install -r apps/x-bot/requirements.txt
28-
27+
pip install -r apps/bots/requirements.txt
28+
2929
- name: Run X-Bot
3030
env:
3131
API_KEY: ${{ secrets.API_KEY }}

.gitignore

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -36,10 +36,10 @@ apps/web/.env.test.local
3636
apps/web/.env.production.local
3737

3838
# X Bot (Python)
39-
apps/x-bot/__pycache__/
40-
apps/x-bot/*.py[cod]
41-
apps/x-bot/*$py.class
42-
apps/x-bot/.venv/
43-
apps/x-bot/venv/
44-
apps/x-bot/ENV/
45-
apps/x-bot/.Pythonnode_modules/
39+
apps/bots/__pycache__/
40+
apps/bots/*.py[cod]
41+
apps/bots/*$py.class
42+
apps/bots/.venv/
43+
apps/bots/venv/
44+
apps/bots/ENV/
45+
apps/bots/.Pythonnode_modules/

apps/ios/YearProgressApp.xcodeproj/project.pbxproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -259,7 +259,7 @@
259259
CODE_SIGN_ENTITLEMENTS = YearProgressApp/YearProgressApp.entitlements;
260260
CODE_SIGN_STYLE = Automatic;
261261
COMBINE_HIDPI_IMAGES = YES;
262-
CURRENT_PROJECT_VERSION = 4;
262+
CURRENT_PROJECT_VERSION = 5;
263263
DEVELOPMENT_TEAM = 6SLY7V277V;
264264
ENABLE_HARDENED_RUNTIME = YES;
265265
GENERATE_INFOPLIST_FILE = YES;
@@ -273,7 +273,7 @@
273273
"$(inherited)",
274274
"@executable_path/../Frameworks",
275275
);
276-
MARKETING_VERSION = 1.1;
276+
MARKETING_VERSION = 1.2;
277277
PRODUCT_BUNDLE_IDENTIFIER = com.johnjeong.yearprogress;
278278
PRODUCT_NAME = "$(TARGET_NAME)";
279279
SWIFT_EMIT_LOC_STRINGS = YES;
@@ -289,7 +289,7 @@
289289
CODE_SIGN_ENTITLEMENTS = YearProgressApp/YearProgressApp.entitlements;
290290
CODE_SIGN_STYLE = Automatic;
291291
COMBINE_HIDPI_IMAGES = YES;
292-
CURRENT_PROJECT_VERSION = 4;
292+
CURRENT_PROJECT_VERSION = 5;
293293
DEVELOPMENT_TEAM = 6SLY7V277V;
294294
ENABLE_HARDENED_RUNTIME = YES;
295295
GENERATE_INFOPLIST_FILE = YES;
@@ -303,7 +303,7 @@
303303
"$(inherited)",
304304
"@executable_path/../Frameworks",
305305
);
306-
MARKETING_VERSION = 1.1;
306+
MARKETING_VERSION = 1.2;
307307
PRODUCT_BUNDLE_IDENTIFIER = com.johnjeong.yearprogress;
308308
PRODUCT_NAME = "$(TARGET_NAME)";
309309
SWIFT_EMIT_LOC_STRINGS = YES;

0 commit comments

Comments
 (0)