Skip to content

Commit

Permalink
docs(main): auto release node using just
Browse files Browse the repository at this point in the history
Signed-off-by: cuisongliu <cuisongliu@qq.com>
  • Loading branch information
cuisongliu committed Nov 27, 2023
1 parent ac20fc3 commit d770988
Show file tree
Hide file tree
Showing 5 changed files with 87 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ name: 🚀 Release
on:
push:
tags: ["v[0-9]+.[0-9]+.[0-9]+*"]
workflow_dispatch:

jobs:
build:
Expand Down
29 changes: 29 additions & 0 deletions .github/workflows/tagpr.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: 🚀 Tagpr for GitHub Actions
on:
push:
branches:
- main
jobs:
tagpr:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
token: ${{ secrets.GITHUB_TOKEN }}
- name: Install just
uses: taiki-e/install-action@just
- uses: Songmu/tagpr@v1
id: tagpr
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Trigger Release Workflow(only when tagged)
uses: actions/github-script@v6
if: "steps.tagpr.outputs.tag != '' && steps.tagpr.outputs.tag != 'v0.3.0'"
with:
script: |
github.rest.actions.createWorkflowDispatch({
owner: context.repo.owner,
repo: context.repo.repo,
workflow_id: 'release.yaml',
ref: "refs/tags/${{ steps.tagpr.outputs.tag }}",
})
44 changes: 44 additions & 0 deletions .github/workflows/update_version_config.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
name: 🤖 Automated Update tagpr config

on:
workflow_dispatch:
inputs:
version:
description: 'Version to release'
required: true
jobs:
config:
runs-on: ubuntu-20.04
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Update tagpr config
run: |
cat << EOF > .tagpr
[tagpr]
vPrefix = true
releaseBranch = main
versionFile = justfile
command = just version-up ${{ github.event.inputs.version }}
release = false
changelog = true
EOF
- uses: peter-evans/create-pull-request@v5
with:
title: 'config: Automated Tagpr Update for ${{ github.event.inputs.version }}'
add-paths: |
.tagpr
body: |
Automated changes by [create-pull-request](https://github.com/peter-evans/create-pull-request) GitHub action
commit-message: |
🤖 update tagpr config using robot.
branch: tagpr-${{ github.event.inputs.version }}
base: main
signoff: true
delete-branch: true
token: ${{ secrets.GITHUB_TOKEN }}
committer: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
author: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
8 changes: 8 additions & 0 deletions .tagpr
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# Generated by github action. DO NOT EDIT.
[tagpr]
vPrefix = true
releaseBranch = main
versionFile = justfile
command = just version-up 0.3.0
release = false
changelog = true
5 changes: 5 additions & 0 deletions justfile
Original file line number Diff line number Diff line change
Expand Up @@ -190,6 +190,11 @@ ci-musl-prepare: ci-prepare
exit 1

version-up version:
#!/usr/bin/bash
set -ex
if [[ "{{version}}" == "0.3.0" ]]; then
return
fi
git grep -l "^version = .* # MARK: Version" | xargs sed -i 's/version = "[0-9]\.[0-9]\.[0-9]" # MARK: Version/version = "{{version}}" # MARK: Version/g'
git grep -l "} # MARK: Version" | grep -v justfile | xargs sed -i 's/version = "[0-9]\.[0-9]\.[0-9]" } # MARK: Version/version = "{{version}}" } # MARK: Version/g'
{{ cwd }}/scripts/release_tag.sh {{version}}

0 comments on commit d770988

Please sign in to comment.