Skip to content

Commit c77d585

Browse files
committed
wip
1 parent 74a1ca0 commit c77d585

File tree

3 files changed

+28
-24
lines changed

3 files changed

+28
-24
lines changed

.github/workflows/master.yml.disabled

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

.github/workflows/publish_packages.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
name: Publish Package
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@v3
12+
- uses: actions/checkout@v4
1313
- uses: dtolnay/rust-toolchain@stable
1414
with:
1515
toolchain: stable

.github/workflows/release.yml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: Open a release PR
2+
on:
3+
workflow_dispatch:
4+
inputs:
5+
version:
6+
description: Version to release
7+
required: true
8+
type: string
9+
10+
jobs:
11+
make-release-pr:
12+
permissions:
13+
id-token: write # Enable OIDC
14+
pull-requests: write
15+
contents: write
16+
runs-on: ubuntu-latest
17+
steps:
18+
- uses: actions/checkout@v4
19+
- uses: taiki-e/install-action@v2
20+
with:
21+
tool: cargo-release
22+
- uses: chainguard-dev/actions/setup-gitsign@main
23+
- uses: cargo-bins/release-pr@v2
24+
with:
25+
github-token: ${{ secrets.GITHUB_TOKEN }}
26+
version: ${{ inputs.version }}
27+
crate-release-all: true

0 commit comments

Comments
 (0)