Skip to content

Commit 44776ca

Browse files
committed
Release v1.0.2
1 parent 59d1de0 commit 44776ca

File tree

2 files changed

+10
-7
lines changed

2 files changed

+10
-7
lines changed

CHANGELOG.md

Lines changed: 4 additions & 1 deletion
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+
## [1.0.2] - 2021-11-01
11+
1012
### Added
1113

1214
- Add workflow call inputs on `create-release.yml` workflow to pass an artifact containing files to attached to the release
@@ -34,6 +36,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
3436
- `Draft new release` shared workflow
3537
- `Release to crates.io` shared workflow
3638

37-
[Unreleased]: https://github.com/farcaster-project/workflows/compare/v1.0.1...HEAD
39+
[Unreleased]: https://github.com/farcaster-project/workflows/compare/v1.0.2...HEAD
40+
[1.0.2]: https://github.com/farcaster-project/workflows/compare/v1.0.1...v1.0.2
3841
[1.0.1]: https://github.com/farcaster-project/workflows/compare/v1.0.0...v1.0.1
3942
[1.0.0]: https://github.com/farcaster-project/workflows/compare/0c88c46cfe1d25098ec47216e4b2dfc8bf871338...v1.0.0

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
[![Workflow version](https://img.shields.io/badge/Workflow%[email protected].1-blue)](https://docs.github.com/en/actions/learn-github-actions/reusing-workflows#calling-a-reusable-workflow)
1+
[![Workflow version](https://img.shields.io/badge/Workflow%[email protected].2-blue)](https://docs.github.com/en/actions/learn-github-actions/reusing-workflows#calling-a-reusable-workflow)
22
[![License: MIT or Apache](https://img.shields.io/badge/License-MIT%20or%20Apache%202.0-yellow.svg)](./COPYRIGHT)
33

44
# Shared Workflows
@@ -30,7 +30,7 @@ on:
3030
jobs:
3131
draft-new-release:
3232
name: "Draft a new release"
33-
uses: farcaster-project/workflows/.github/workflows/[email protected].1
33+
uses: farcaster-project/workflows/.github/workflows/[email protected].2
3434
with:
3535
version: ${{ github.event.inputs.version }}
3636
```
@@ -55,7 +55,7 @@ jobs:
5555
create_release:
5656
name: Create from merged release branch
5757
if: github.event.pull_request.merged == true && startsWith(github.event.pull_request.head.ref, 'release/')
58-
uses: farcaster-project/workflows/.github/workflows/[email protected].1
58+
uses: farcaster-project/workflows/.github/workflows/[email protected].2
5959
```
6060

6161
If you want to attached files to the release you can declare a `create_release` job with:
@@ -81,7 +81,7 @@ jobs:
8181
create_release:
8282
name: Create from merged release branch
8383
if: github.event.pull_request.merged == true && startsWith(github.event.pull_request.head.ref, 'release/')
84-
uses: farcaster-project/workflows/.github/workflows/[email protected].1
84+
uses: farcaster-project/workflows/.github/workflows/[email protected].2
8585
needs: produce_binaries
8686
with:
8787
artifact_name: release-folder
@@ -95,7 +95,7 @@ You can add another job after `create_release`, e.g. `releast_to_crates`, trigge
9595
```yaml
9696
releast_to_crates:
9797
name: Release to crates.io
98-
uses: farcaster-project/workflows/.github/workflows/[email protected].1
98+
uses: farcaster-project/workflows/.github/workflows/[email protected].2
9999
needs: create_release
100100
secrets:
101101
cratesio_token: ${{ secrets.CARGO_REGISTRY_TOKEN }}
@@ -117,7 +117,7 @@ on:
117117
jobs:
118118
release:
119119
name: "Publish the new release to crates.io"
120-
uses: farcaster-project/workflows/.github/workflows/[email protected].1
120+
uses: farcaster-project/workflows/.github/workflows/[email protected].2
121121
secrets:
122122
cratesio_token: ${{ secrets.CARGO_REGISTRY_TOKEN }}
123123
```

0 commit comments

Comments
 (0)