Skip to content

Commit ede9f48

Browse files
authored
Merge pull request #275 from caido/ef-publish
Publish workflow
2 parents fe748a9 + 3048957 commit ede9f48

2 files changed

Lines changed: 31 additions & 0 deletions

File tree

.github/workflows/publish.yml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
name: Publish
2+
on:
3+
push:
4+
tags:
5+
- 'v[0-9]+.[0-9]+.[0-9]+*'
6+
7+
permissions:
8+
id-token: write # Required for OIDC
9+
contents: read
10+
11+
jobs:
12+
publish:
13+
if: github.repository == 'mattsse/chromiumoxide'
14+
runs-on: ubuntu-latest
15+
steps:
16+
- name: Checkout repository
17+
uses: actions/checkout@v6
18+
19+
- name: Setup Rust
20+
uses: dtolnay/rust-toolchain@stable
21+
22+
- name: Authenticate with crates.io
23+
uses: rust-lang/crates-io-auth-action@b7e9a28eded4986ec6b1fa40eeee8f8f165559ec # v1.0.3
24+
id: auth
25+
26+
- name: Publish crates
27+
uses: katyo/publish-crates@02cc2f1ad653fb25c7d1ff9eb590a8a50d06186b # v2
28+
with:
29+
registry-token: ${{ steps.auth.outputs.token }}

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.8.0] 2025-11-28
11+
1012
### Breaking Changes
1113

1214
Due to the support of new browsers in the fetcher, we changed the API.

0 commit comments

Comments
 (0)