From 9bad9c7d4a721069aac9b5ae686c702f363c9140 Mon Sep 17 00:00:00 2001 From: The-Best-Codes Date: Thu, 25 Jul 2024 21:51:26 -0500 Subject: [PATCH] Super tiny --- .github/workflows/update_security_md.yml | 4 +++- package.json | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/update_security_md.yml b/.github/workflows/update_security_md.yml index 252eadf..c43562c 100644 --- a/.github/workflows/update_security_md.yml +++ b/.github/workflows/update_security_md.yml @@ -48,12 +48,14 @@ jobs: sed -i '/^| Version/,/^$/c\'"$TABLE_CONTENT" $SECURITY_FILE - name: Commit and push changes + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} run: | git config --local user.email "action@github.com" git config --local user.name "GitHub Action" git fetch origin git checkout main - git pull + git pull --rebase origin main git add SECURITY.md git commit -m "Update SECURITY.md for new release" || exit 0 git push diff --git a/package.json b/package.json index 3cbe317..803a725 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "best-bible", - "version": "1.4.9", + "version": "1.5.0", "description": "Fetch, parse, and analyze the Bible easily with JavaScript", "scripts": { "build:cjs": "tsc --project tsconfig.cjs.json || true && mkdir -p dist/cjs/data && cp src/data/bible.json dist/cjs/data/",