We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 6916a43 + 3a4a1df commit 16d960aCopy full SHA for 16d960a
.github/workflows/automaticRelease.yaml
@@ -45,6 +45,12 @@ jobs:
45
sudo apt install gettext
46
- name: Build
47
run: scons version=${{ github.sha }}
48
+ - uses: actions/checkout@v2
49
+ - name: Set up Rust
50
+ uses: actions-rs/toolchain@v1
51
+ with:
52
+ toolchain: stable
53
+ override: true
54
- name: Automatic release
55
uses: marvinpinto/action-automatic-releases@latest
56
with:
.github/workflows/manualRelease.yaml
@@ -32,6 +32,9 @@ jobs:
32
uses: actions/setup-python@v4
33
34
python-version: 3.8
35
+ - name: Build Rust Project
36
+ run: |
37
+ cargo build --release
38
- name: Install dependencies
39
run: |
40
pip install scons markdown
0 commit comments