fix(deps): update dependency androidx.work:work-runtime to v2.10.0 (#… #1532
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 | |
- development | |
jobs: | |
bump-version: | |
if: ${{ !startsWith(github.event.head_commit.message, 'chore(release):') }} | |
runs-on: ubuntu-latest | |
name: "Bump version and create changelog with standard version" | |
steps: | |
- name: Check out | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
token: '${{ secrets.PERSONAL_ACCESS_TOKEN }}' | |
- uses: oven-sh/setup-bun@v2 | |
- name: Install dependencies | |
id: install_code | |
run: bun i | |
- name: Git config | |
run: | | |
git config --local user.name "github-actions[bot]" | |
git config --local user.email "github-actions[bot]@users.noreply.github.com" | |
- name: Update Doc | |
run: bun run docgen | |
- name: Update Doc | |
run: bun run docgen:api | |
- name: Add doc to github | |
run: | | |
git add README.md | |
git add api.md | |
git commit --m "docs: update doc" || true | |
- name: Create bump and changelog main | |
if: github.ref == 'refs/heads/main' | |
run: bunx capacitor-plugin-standard-version@latest | |
- name: Create bump and changelog development | |
if: github.ref != 'refs/heads/main' | |
run: bunx capacitor-plugin-standard-version@latest --prerelease alpha | |
- name: Push to origin | |
run: | | |
CURRENT_BRANCH=$(git rev-parse --abbrev-ref HEAD) | |
remote_repo="https://${GITHUB_ACTOR}:${{ secrets.PERSONAL_ACCESS_TOKEN }}@github.com/${GITHUB_REPOSITORY}.git" | |
git pull $remote_repo $CURRENT_BRANCH | |
git push $remote_repo HEAD:$CURRENT_BRANCH --follow-tags --tags | |
- name: Push generated doc to doc repo | |
uses: nkoppel/[email protected] | |
env: | |
API_TOKEN_GITHUB: ${{ secrets.PERSONAL_ACCESS_TOKEN }} | |
with: | |
source-files: api.md | |
destination-username: Cap-go | |
destination-repository: website | |
destination-directory: src/content/docs/docs/plugin | |
destination-branch: main | |
commit-email: [email protected] | |
create-cache: | |
if: ${{ !startsWith(github.event.head_commit.message, 'chore(release):') }} | |
runs-on: ubuntu-latest | |
name: "Create global cache on main branch" | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: oven-sh/setup-bun@v2 | |
- name: Install dependencies | |
id: install_code | |
run: bun i | |
- name: CLI capacitor-standard-version install | |
run: bunx capacitor-standard-version@latest --version |