mirror of
https://github.com/yewstack/yew.git
synced 2025-12-08 21:26:25 +00:00
Bumps [peterjgrainger/action-create-branch](https://github.com/peterjgrainger/action-create-branch) from 2.0.1 to 2.4.0. - [Release notes](https://github.com/peterjgrainger/action-create-branch/releases) - [Commits](https://github.com/peterjgrainger/action-create-branch/compare/v2.0.1...v2.4.0) --- updated-dependencies: - dependency-name: peterjgrainger/action-create-branch dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
69 lines
1.9 KiB
YAML
69 lines
1.9 KiB
YAML
name: Publish yew-router & yew-router-macro
|
|
permissions:
|
|
contents: write
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
inputs:
|
|
level:
|
|
description: "Version Level major|minor|patch"
|
|
required: true
|
|
type: choice
|
|
options:
|
|
- patch
|
|
- minor
|
|
- major
|
|
jobs:
|
|
publish:
|
|
name: Publish yew-router
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout sources
|
|
uses: actions/checkout@v2
|
|
with:
|
|
token: "${{ secrets.YEWTEMPBOT_TOKEN }}"
|
|
fetch-depth: 0
|
|
|
|
- name: Config Git
|
|
uses: oleksiyrudenko/gha-git-credentials@v2-latest
|
|
with:
|
|
token: "${{ secrets.YEWTEMPBOT_TOKEN }}"
|
|
|
|
- name: Setup toolchain
|
|
uses: dtolnay/rust-toolchain@master
|
|
with:
|
|
toolchain: stable
|
|
|
|
- name: Install cargo binary dependencies
|
|
uses: baptiste0928/cargo-install@v1
|
|
with:
|
|
crate: cargo-release
|
|
version: =0.23.1
|
|
|
|
- name: Cargo login
|
|
run: cargo login ${{ secrets.CRATES_IO_TOKEN }}
|
|
|
|
- name: Release yew-router-macro
|
|
run: cargo release ${{ github.event.inputs.level }} --execute --no-confirm --package yew-router-macro
|
|
|
|
- name: Release yew-router
|
|
run: cargo release ${{ github.event.inputs.level }} --execute --no-confirm --package yew-router
|
|
|
|
- name: Get tag
|
|
id: gettag
|
|
uses: WyriHaximus/github-action-get-previous-tag@v1
|
|
|
|
- name: Create a version branch
|
|
uses: peterjgrainger/action-create-branch@v2.4.0
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
with:
|
|
branch: ${{ steps.gettag.outputs.tag }}
|
|
|
|
- name: Create a Release
|
|
uses: softprops/action-gh-release@v1
|
|
with:
|
|
token: ${{ secrets.YEWTEMPBOT_TOKEN }}
|
|
tag_name: ${{ steps.gettag.outputs.tag }}
|
|
body: ${{ steps.changelog.outputs.stdout }}
|