Skip to content

Commit f05a6c4

Browse files
committed
Fix workflow reuse.
GitHub seems to now require that workflow reuse occur as a job, not a step.
1 parent e610077 commit f05a6c4

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@ on:
66
- "v*"
77

88
jobs:
9+
build:
10+
uses: ./.github/workflows/build.yml
11+
912
release:
1013
runs-on: ubuntu-latest
1114
steps:
12-
- name: Release Build
13-
uses: ./.github/workflows/build.yml
14-
1515
- name: Download build artifacts
1616
id: download
1717
uses: actions/download-artifact@v4

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "diskuto-api"
3-
version = "1.0.0-rc2"
3+
version = "1.0.0-rc3"
44
authors = ["Cody Casterline <cody.casterline@gmail.com>"]
55
edition = "2018"
66

0 commit comments

Comments
 (0)