Skip to content

Commit 624f93d

Browse files
committed
Switch to reusable workflows for remaining release tasks
1 parent d0c01b2 commit 624f93d

File tree

4 files changed

+27
-132
lines changed

4 files changed

+27
-132
lines changed
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
name: auto-draft release
2+
3+
on:
4+
push:
5+
tags:
6+
- v[0-9]+.[0-9]+.[0-9]+
7+
8+
jobs:
9+
draft_release:
10+
name: draft release
11+
permissions:
12+
contents: write
13+
uses: EarthmanMuons/reusable-workflows/.github/workflows/draft-release-rust.yml@main
14+
with:
15+
package: spellout
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
name: auto-publish crate
2+
3+
on:
4+
push:
5+
tags:
6+
- "*-v[0-9]+.[0-9]+.[0-9]+"
7+
8+
jobs:
9+
publish_crate:
10+
name: publish crate
11+
uses: EarthmanMuons/reusable-workflows/.github/workflows/publish-crate.yml@main
12+
secrets: inherit

.github/workflows/draft-release.yml

Lines changed: 0 additions & 92 deletions
This file was deleted.

.github/workflows/publish-crate.yml

Lines changed: 0 additions & 40 deletions
This file was deleted.

0 commit comments

Comments
 (0)