-
Notifications
You must be signed in to change notification settings - Fork 0
72 lines (61 loc) · 1.87 KB
/
action.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
name: Process Markdown Files with Obs3dian
on:
push:
paths:
- '**/*.md'
jobs:
install:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: Install AWS CLI
run: |
curl "https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip" -o "awscliv2.zip"
unzip awscliv2.zip
sudo ./aws/install
- name: Install Python dependencies
run: |
python -m pip install --upgrade pip
pip install obs3dian
config:
runs-on: ubuntu-latest
needs: install
steps:
- name: Configure AWS CLI
run: |
mkdir -p ~/.aws
echo "[obs3dian]" > ~/.aws/credentials
echo "aws_access_key_id = ${{ secrets.AWS_ACCESS_KEY_ID }}" >> ~/.aws/credentials
echo "aws_secret_access_key = ${{ secrets.AWS_SECRET_ACCESS_KEY }}" >> ~/.aws/credentials
echo "[obs3dian]" > ~/.aws/config
echo "region = ${{ secrets.AWS_DEFAULT_REGION }}" >> ~/.aws/config
- name: Configure Obs3dian
run: |
obs3dian config <<EOF
Y
obs3dian
csocrates_image
./output
./
EOF
process:
runs-on: ubuntu-latest
steps:
- name: Process Markdown files
run: |
obs3dian run . --overwrite --usekey
- name: Commit changes
run: |
git config --global user.name 'github-actions[bot]'
git config --global user.email 'github-actions[bot]@users.noreply.github.com'
git add .
git commit -m "Processed Markdown files using obs3dian" || echo "No changes to commit"
- name: Push changes
uses: ad-m/[email protected]
with:
github_token: ${{ secrets.GITHUB_TOKEN }}