Skip to content

feat: added initial size #73

feat: added initial size

feat: added initial size #73

Workflow file for this run

name: Update release
on:
push:
tags:
- '*'
workflow_dispatch:
jobs:
merge-to-stable:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/[email protected]
with:
token: ${{ secrets.SBPAT }}
persist-credentials: false
fetch-depth: 0
- name: Set git config
run: |
git config --local user.email "[email protected]"
git config --local user.name "LinkDotNet Bot"
- name: Merge main to stable
run: |
git fetch
git checkout stable
git pull
git merge --no-ff -X theirs origin/main -m "Updating to newest release"
- name: Push changes
uses: ad-m/[email protected]
with:
github_token: ${{ secrets.SBPAT }}
branch: stable
force: true