chore: revert upload file size to 15mb #119
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: bump version | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
bump_version: | |
if: | | |
github.repository_owner == 'maidsafe' && | |
!startsWith(github.event.head_commit.message, 'chore(release):') | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: "0" | |
token: ${{ secrets.RELEASE_PAT }} | |
- uses: actions-rs/toolchain@v1 | |
id: toolchain | |
with: | |
profile: minimal | |
toolchain: stable | |
override: true | |
- name: configure git for release | |
shell: bash | |
run: | | |
git config --local user.email "[email protected]" | |
git config --local user.name "GitHub Action" | |
- uses: cargo-bins/cargo-binstall@main | |
- shell: bash | |
run: cargo binstall --no-confirm release-plz | |
- name: bump version | |
shell: bash | |
run: | | |
set -e | |
release-plz update | |
if [[ -z $(git status --porcelain) ]]; then | |
echo "No changes were detected. Exiting without bumping the version." | |
exit 0 | |
fi | |
version=$(cat Cargo.toml | grep "^version" | awk -F '=' '{ print $2 }' | xargs) | |
commit_message="chore(release): $version" | |
git add --all | |
git commit -m "$commit_message" | |
echo "Generated release commit $commit_message" | |
- name: push version bump commit | |
uses: ad-m/github-push-action@master | |
with: | |
github_token: ${{ secrets.RELEASE_PAT }} | |
branch: main | |
tags: true |