Skip to content

Commit c98a48e

Browse files
committed
fix: correct release workflow and README URLs
1 parent 79eec5e commit c98a48e

2 files changed

Lines changed: 9 additions & 2 deletions

File tree

.github/workflows/release.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,17 @@ jobs:
1919
- name: Build compiled scripts
2020
run: bash build.sh
2121

22+
- name: Create archive
23+
run: |
24+
cd dist
25+
tar -czf ../compiled-scripts.tar.gz *
26+
cd ..
27+
ls -lh compiled-scripts.tar.gz
28+
2229
- name: Create release
2330
uses: softprops/action-gh-release@v1
2431
with:
25-
files: dist/*
32+
files: compiled-scripts.tar.gz
2633
draft: false
2734
prerelease: false
2835
env:

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ bash init.sh
1616

1717
Ou télécharger manuellement depuis [releases](https://github.com/axgd-code/init_computer/releases), puis :
1818
```bash
19-
cd dist/
19+
tar -xzf compiled-scripts.tar.gz
2020
bash init.sh
2121
```
2222

0 commit comments

Comments
 (0)