Skip to content

Commit b33f211

Browse files
committed
Update gyroflow revision
1 parent 4d2950c commit b33f211

File tree

3 files changed

+24
-4
lines changed

3 files changed

+24
-4
lines changed

.github/workflows/build.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,13 @@ jobs:
2828
command: build
2929
args: --release
3030
- run: make target/gyroflow-ofx-linux.zip
31+
32+
- name: Save Binaries
33+
uses: actions/upload-artifact@v2
34+
with:
35+
name: gyroflow-ofx-linux
36+
path: target/gyroflow-ofx-linux.zip
37+
3138
- name: Release
3239
uses: softprops/action-gh-release@v1
3340
if: startsWith(github.ref, 'refs/tags/')
@@ -81,6 +88,12 @@ jobs:
8188
npx notarize-cli --file target/gyroflow-ofx-macosx.dmg --bundle-id xyz.gyroflow.ofx --asc-provider="${{ secrets.MACOS_TEAM }}" --username="${{ secrets.MACOS_ACCOUNT_USER }}" --password="${{ secrets.MACOS_ACCOUNT_PASS }}"
8289
xcrun stapler staple --verbose target/gyroflow-ofx-macosx.dmg
8390
91+
- name: Save Binaries
92+
uses: actions/upload-artifact@v2
93+
with:
94+
name: gyroflow-ofx-macosx
95+
path: target/gyroflow-ofx-macosx.dmg
96+
8497
- name: Release
8598
uses: softprops/action-gh-release@v1
8699
if: startsWith(github.ref, 'refs/tags/')
@@ -119,6 +132,13 @@ jobs:
119132
command: build
120133
args: --release
121134
- run: make target/gyroflow-ofx-windows.zip
135+
136+
- name: Save Binaries
137+
uses: actions/upload-artifact@v2
138+
with:
139+
name: gyroflow-ofx-windows
140+
path: target/gyroflow-ofx-windows.zip
141+
122142
- name: Release
123143
uses: softprops/action-gh-release@v1
124144
if: startsWith(github.ref, 'refs/tags/')

Cargo.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "gyroflow-ofx"
3-
version = "1.0.7"
3+
version = "1.0.8"
44
authors = ["Ilya Epifanov <elijah.epifanov@gmail.com>", "Adrian <adrian.eddy@gmail.com>"]
55
license = "GPL-3.0-or-later"
66
edition = "2021"
@@ -17,7 +17,7 @@ measure_time = "0.8"
1717
log = "0.4"
1818
itertools = "0.10"
1919
lru = "0.8"
20-
gyroflow-core = { git = "https://github.com/gyroflow/gyroflow.git", default-features = false, rev = "9508aa6" }
20+
gyroflow-core = { git = "https://github.com/gyroflow/gyroflow.git", default-features = false, rev = "6c20a7f" }
2121
#gyroflow-core = { path = "../gyroflow/src/core", default-features = false }
2222
serde_json = "1"
2323

0 commit comments

Comments
 (0)