Skip to content

Commit 0ade063

Browse files
authored
Merge pull request #8 from Garulf/fix-dev-builder
Fix dev builder
2 parents 4a46951 + 5106f21 commit 0ade063

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/dev-builder.yml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -52,11 +52,9 @@ jobs:
5252
value: "${{steps.version.outputs.major}}.${{steps.version.outputs.minor}}.${{steps.version.outputs.patch}}-dev"
5353
- name: Package files
5454
run: |
55-
$exclude = @("demo.*","*.git*","README.*", "assets")
56-
$path = "./*"
57-
$files = Get-ChildItem -Path $path -Exclude $exclude
58-
echo $files
59-
Compress-Archive -DestinationPath ./"${{github.event.repository.name}}.zip" -Path $files
55+
git clone https://github.com/Garulf/flow_commands/ bin
56+
pip install -r ./bin/requirements.txt
57+
python ./bin/commands.py package -n "${{github.event.repository.name}}.zip"
6058
- name: Delete previous drafts
6159
uses: hugo19941994/[email protected]
6260
env:

.gitignore

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,4 +128,6 @@ dmypy.json
128128
# Pyre type checker
129129
.pyre/
130130

131-
*.svg
131+
*.svg
132+
133+
bin/

0 commit comments

Comments
 (0)