2024-01-27 22:58:03 -05:00
|
|
|
name: Bump release version
|
|
|
|
on:
|
|
|
|
pull_request:
|
|
|
|
branches: [rolling]
|
|
|
|
types:
|
|
|
|
- closed
|
|
|
|
|
|
|
|
permissions:
|
|
|
|
contents: write
|
|
|
|
|
|
|
|
concurrency: production
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
2024-01-28 09:30:32 -05:00
|
|
|
name: bump tag version and release
|
2024-01-27 22:58:03 -05:00
|
|
|
if: github.event.pull_request.merged == true
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Checkout code
|
2024-01-28 09:30:32 -05:00
|
|
|
uses: actions/checkout@v3
|
|
|
|
with:
|
2024-01-28 10:46:42 -05:00
|
|
|
ref: ${{ github.sha }}
|
2024-01-28 09:30:32 -05:00
|
|
|
fetch-depth: 0
|
2024-01-28 09:54:38 -05:00
|
|
|
- name: Bump version and push tag
|
2024-01-28 10:03:20 -05:00
|
|
|
id: version-bump
|
2024-01-28 09:59:23 -05:00
|
|
|
uses: hennejg/github-tag-action@v4.3.1
|
2024-01-28 09:54:38 -05:00
|
|
|
with:
|
2024-01-28 09:55:49 -05:00
|
|
|
github_token: ${{ secrets.GITHUB_TOKEN }}
|
2024-01-28 10:07:02 -05:00
|
|
|
release_branches: rolling
|
2024-01-29 07:06:15 -05:00
|
|
|
- name: get-app-version
|
|
|
|
id: package-version
|
|
|
|
run: |
|
|
|
|
LF_VERSION=$(cat package.json | jq -r '.version')
|
|
|
|
echo "current-version=$LF_VERSION" >> "$GITHUB_OUTPUT"
|
|
|
|
- name: update cargo.toml
|
|
|
|
run: |
|
2024-01-29 07:11:59 -05:00
|
|
|
appversion=$(echo "${{ steps.version-bump.outputs.new_tag }}" | sed 's/[v]//')
|
2024-01-29 07:06:15 -05:00
|
|
|
sed -i -e "s/^version = .*/version = \"$appversion\"/" Cargo.toml
|
2024-01-28 02:13:45 -05:00
|
|
|
- name: Create Release
|
2024-01-28 09:18:02 -05:00
|
|
|
uses: softprops/action-gh-release@v1
|
2024-01-28 02:13:45 -05:00
|
|
|
with:
|
2024-01-28 09:18:02 -05:00
|
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
generate_release_notes: true
|
|
|
|
name: ${{ steps.version-bump.outputs.new_tag }}
|
2024-01-28 02:27:59 -05:00
|
|
|
tag_name: ${{ steps.version-bump.outputs.new_tag }}
|
2024-01-28 02:13:45 -05:00
|
|
|
prerelease: false
|
2024-01-28 09:18:02 -05:00
|
|
|
env:
|
2024-01-28 09:30:32 -05:00
|
|
|
GITHUB_REPOSITORY: ${{ github.repository }}
|
2024-01-28 00:27:44 -05:00
|
|
|
|