Skip to content

Commit a3739ea

Browse files
committed
Tweak to workflow to combine two run steps into one
1 parent 0a484e9 commit a3739ea

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/automaticRelease.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -46,11 +46,11 @@ jobs:
4646
- uses: actions/checkout@v3
4747
- name: Set up Rust
4848
run: cargo build --target i686-pc-windows-msvc --release
49-
- name: Copy MathCAT.pyd file
50-
run: cp target/i686-pc-windows-msvc/release/libmathcat_py.dll addon/globalPlugins/MathCAT/libmathcat.pyd
51-
- name: Fix wx file
52-
run: sed 's/^import wx\.xrc/# import wx.xrc/' --in-place "addon/globalPlugins/MathCAT/MathCATgui.py"
53-
- name: Build
49+
- name: Copy MathCAT.pyd file and fix wx file
50+
run: |
51+
cp target/i686-pc-windows-msvc/release/libmathcat_py.dll addon/globalPlugins/MathCAT/libmathcat.pyd
52+
sed 's/^import wx\.xrc/# import wx.xrc/' --in-place "addon/globalPlugins/MathCAT/MathCATgui.py"
53+
- name: Build with scons
5454
run: scons version=${{ github.sha }}
5555
- name: Automatic release
5656
uses: marvinpinto/action-automatic-releases@latest

0 commit comments

Comments
 (0)