We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 78908a7 commit 59d54c7Copy full SHA for 59d54c7
1 file changed
.github/workflows/release.yml
@@ -32,6 +32,11 @@ jobs:
32
- name: Checkout
33
uses: actions/checkout@v4
34
35
+ - name: Set up Python
36
+ uses: actions/setup-python@v5
37
+ with:
38
+ python-version: "3.x"
39
+
40
- name: Install Rust
41
uses: dtolnay/rust-toolchain@stable
42
@@ -42,7 +47,7 @@ jobs:
47
run: cargo build --release -p rexos-cli --locked
43
48
44
49
- name: Package
45
- run: python3 scripts/package_release.py --version "${{ github.ref_name }}" --target "${{ matrix.target }}" --bin "${{ matrix.bin }}" --out-dir dist
50
+ run: python scripts/package_release.py --version "${{ github.ref_name }}" --target "${{ matrix.target }}" --bin "${{ matrix.bin }}" --out-dir dist
46
51
52
- name: Upload artifact
53
uses: actions/upload-artifact@v4
@@ -71,4 +76,3 @@ jobs:
71
76
with:
72
77
files: dist/**
73
78
generate_release_notes: true
74
-
0 commit comments