Skip to content

Commit

Permalink
feat(ci): add version_in_code.yml workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
vhyrro committed Apr 19, 2023
1 parent 9a497f5 commit 5746245
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/version_in_code.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: Update Version String in Neorg Code

on:
workflow_run:
workflows: ["Release Please Automatic Semver"]
branches: [main]
types:
- completed

jobs:
release:
name: release
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2

- name: Update Version String
run: |
latest_tag=$(git describe --abbrev=0 --tags)
echo "Updating Neorg Version to $latest_tag"
sed -ri "s/\sversion\s*=\s*\"[0-9]+\.[0-9]+\.[0-9]+\",$/ version = \"${latest_tag:1}\",/" lua/neorg/config.lua
- name: Commit Changes
run: |
git config --local user.email "41898282+github-actions[bot]@users.noreply.github.com"
git config --local user.name "github-actions[bot]"
if [[ ! -z $(git status -s) ]]; then
git add .
git commit -m "chore(config.lua): update version variable"
fi

0 comments on commit 5746245

Please sign in to comment.