Skip to content

Commit dfa5376

Browse files
committed
Merge branch 'main' of github.com:eri24816/grapycal_examples
2 parents 44235f9 + a7439bc commit dfa5376

18 files changed

+239
-15
lines changed

.github/workflows/gen_metadata.yml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
# runs scripts/gen_metadata.py then commits the changes to the repo
2+
3+
name: Generate Metadata
4+
5+
on:
6+
push:
7+
branches:
8+
- main
9+
10+
jobs:
11+
gen_metadata:
12+
permissions:
13+
contents: write
14+
runs-on: ubuntu-latest
15+
steps:
16+
- uses: actions/checkout@v2
17+
- name: Set up Python
18+
uses: actions/setup-python@v2
19+
with:
20+
python-version: '3.x'
21+
- name: Run script
22+
run: python scripts/gen_metadata.py
23+
- name: Commit changes
24+
run: |
25+
git config --local user.email "[email protected]"
26+
git config --local user.name "eri24816"
27+
git add metadata.json
28+
git commit -m "Update metadata.json"
29+
git push

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1-
data/
1+
data/
2+
_data/

files/fractal.grapycal

19.8 KB
Binary file not shown.

files/mandelbrot.grapycal

42.3 KB
Binary file not shown.

files/music_player.grapycal

46 KB
Binary file not shown.
File renamed without changes.
60.6 KB
Binary file not shown.
13.1 KB
Binary file not shown.

0 commit comments

Comments
 (0)