mirror of
https://github.com/neon-mmd/websurfx.git
synced 2024-11-22 05:58:21 -05:00
ci: testing autocommit with branch protection and doing a PR to rolling
This commit is contained in:
parent
559c7fcb76
commit
2e653d1905
22
.github/workflows/release.yml
vendored
22
.github/workflows/release.yml
vendored
@ -27,18 +27,26 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
github_token: ${{ secrets.GITHUB_TOKEN }}
|
github_token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
release_branches: rolling
|
release_branches: rolling
|
||||||
- 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
|
- name: update cargo.toml
|
||||||
run: |
|
run: |
|
||||||
appversion=$(echo "${{ steps.version-bump.outputs.new_tag }}" | sed 's/[v]//')
|
appversion=$(echo "${{ steps.version-bump.outputs.new_tag }}" | sed 's/[v]//')
|
||||||
sed -i -e "s/^version = .*/version = \"$appversion\"/" Cargo.toml
|
sed -i -e "s/^version = .*/version = \"$appversion\"/" Cargo.toml
|
||||||
- uses: stefanzweifel/git-auto-commit-action@v5
|
- uses: stefanzweifel/git-auto-commit-action@v5
|
||||||
with:
|
# create PR using GitHub CLI
|
||||||
branch: rolling
|
- name: create PR with release info
|
||||||
|
if: steps.changelog.outputs.skipped == 'false'
|
||||||
|
id: create-pr
|
||||||
|
run: gh pr create --base main --head release-from-${{ github.sha }} --title 'Merge new release into main' --body 'Created by Github action'
|
||||||
|
env:
|
||||||
|
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
# merge PR using GitHub CLI
|
||||||
|
- name: merge PR with release info
|
||||||
|
if: steps.changelog.outputs.skipped == 'false'
|
||||||
|
id: merge-pr
|
||||||
|
run: gh pr merge --admin --merge --subject 'Merge release info' --delete-branch
|
||||||
|
env:
|
||||||
|
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
|
||||||
- name: Create Release
|
- name: Create Release
|
||||||
uses: softprops/action-gh-release@v1
|
uses: softprops/action-gh-release@v1
|
||||||
with:
|
with:
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "websurfx"
|
name = "websurfx"
|
||||||
version = "2.0.4"
|
version = "1.9.6"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
description = "An open-source alternative to Searx that provides clean, ad-free, and organic results with incredible speed while keeping privacy and security in mind."
|
description = "An open-source alternative to Searx that provides clean, ad-free, and organic results with incredible speed while keeping privacy and security in mind."
|
||||||
repository = "https://github.com/neon-mmd/websurfx"
|
repository = "https://github.com/neon-mmd/websurfx"
|
||||||
|
Loading…
Reference in New Issue
Block a user