-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #8 from Garulf/fix-dev-builder
Fix dev builder
- Loading branch information
Showing
2 changed files
with
6 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -52,11 +52,9 @@ jobs: | |
value: "${{steps.version.outputs.major}}.${{steps.version.outputs.minor}}.${{steps.version.outputs.patch}}-dev" | ||
- name: Package files | ||
run: | | ||
$exclude = @("demo.*","*.git*","README.*", "assets") | ||
$path = "./*" | ||
$files = Get-ChildItem -Path $path -Exclude $exclude | ||
echo $files | ||
Compress-Archive -DestinationPath ./"${{github.event.repository.name}}.zip" -Path $files | ||
git clone https://github.com/Garulf/flow_commands/ bin | ||
pip install -r ./bin/requirements.txt | ||
python ./bin/commands.py package -n "${{github.event.repository.name}}.zip" | ||
- name: Delete previous drafts | ||
uses: hugo19941994/[email protected] | ||
env: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -128,4 +128,6 @@ dmypy.json | |
# Pyre type checker | ||
.pyre/ | ||
|
||
*.svg | ||
*.svg | ||
|
||
bin/ |