We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8aa4f07 commit 3b3836dCopy full SHA for 3b3836d
.github/workflows/release.yml
@@ -26,14 +26,17 @@ jobs:
26
- name: Install Composer dependencies
27
run: composer install --no-dev --optimize-autoloader
28
29
+ - name: Generate configuration files
30
+ run: php scripts/config_gen.php
31
+
32
- name: Create tarball
- run: tar -czvf cypht.tar.gz ./*
33
+ run: cd .. && tar -pczf cypht.tar.gz cypht
34
35
- name: Upload release asset
36
uses: actions/upload-release-asset@v1
37
with:
38
upload_url: ${{ github.event.release.upload_url }}
- asset_path: ./cypht.tar.gz
39
+ asset_path: ../cypht.tar.gz
40
asset_name: cypht.tar.gz
41
asset_content_type: application/gzip
42
env:
0 commit comments