Skip to content

Removed commit signing for docs action 😥 #15

Removed commit signing for docs action 😥

Removed commit signing for docs action 😥 #15

Workflow file for this run

name: Build Docs
on:
push:
branches:
- main
paths:
- 'fastlane/**/*'
- 'scripts/generate-readme.sh'
- '.github/workflows/docs.yml'
jobs:
build:
permissions:
id-token: write # Enable OIDC
contents: write
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Generate Readme
run: bash ${GITHUB_WORKSPACE}/scripts/generate-readme.sh
- name: Commit and push changes
run: |
git config user.name github-actions
git config user.email [email protected]
git add .
git commit -m "Generated docs"
git push --force