Skip to content
Snippets Groups Projects
Commit 77d29b66 authored by Griefed's avatar Griefed :joystick:
Browse files

ci: Finally. Fix and close issue #17 by manually creating tar.gz archives

parent b53ba5c2
No related branches found
No related tags found
No related merge requests found
...@@ -72,7 +72,7 @@ jobs: ...@@ -72,7 +72,7 @@ jobs:
- name: Create NGINX Archive tar.gz - name: Create NGINX Archive tar.gz
run: | run: |
echo "**** Creating archive of quasar build ****" echo "**** Creating archive of quasar build ****"
tar -czf lttmm-NGINX-${{ steps.tag.outputs.tag }}.tar.gz dist/spa tar -cvzf lttmm-NGINX-${{ steps.tag.outputs.tag }}.tar.gz dist/spa
- name: Create NGINX Archive zip - name: Create NGINX Archive zip
uses: papeloto/action-zip@v1 uses: papeloto/action-zip@v1
with: with:
...@@ -182,11 +182,10 @@ jobs: ...@@ -182,11 +182,10 @@ jobs:
with: with:
root_dir: lttmm-${{ matrix.os }} root_dir: lttmm-${{ matrix.os }}
file_path: lttmm-app-${{ matrix.os }}-${{ needs.release.outputs.newtag }}.zip file_path: lttmm-app-${{ matrix.os }}-${{ needs.release.outputs.newtag }}.zip
verbose: true
- name: Create tar.gz - name: Create tar.gz
uses: ihiroky/archive-action@v1 run: |
with: tar -cvzf lttmm-app-${{ matrix.os }}-${{ needs.release.outputs.newtag }}.tar.gz lttmm-${{ matrix.os }}
root_dir: lttmm-${{ matrix.os }}
file_path: lttmm-app-${{ matrix.os }}-${{ needs.release.outputs.newtag }}.tar.gz
# Upload App Assets # Upload App Assets
- name: Upload App Archive zip - name: Upload App Archive zip
......
...@@ -90,16 +90,11 @@ jobs: ...@@ -90,16 +90,11 @@ jobs:
uses: ihiroky/archive-action@v1 uses: ihiroky/archive-action@v1
with: with:
root_dir: lttmm-${{ matrix.os }} root_dir: lttmm-${{ matrix.os }}
base_dir: "lttmm-${{ matrix.os }}"
file_path: lttmm-app-${{ matrix.os }}.zip file_path: lttmm-app-${{ matrix.os }}.zip
verbose: true verbose: true
- name: Create tar.gz - name: Create tar.gz
uses: ihiroky/archive-action@v1 run: |
with: tar -cvzf lttmm-app-${{ matrix.os }}-${{ needs.release.outputs.newtag }}.tar.gz lttmm-${{ matrix.os }}
root_dir: lttmm-${{ matrix.os }}
base_dir: "lttmm-${{ matrix.os }}"
file_path: lttmm-app-${{ matrix.os }}.tar.gz
verbose: true
- name: List files - name: List files
run: ls run: ls
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment