Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
nanos committed Sep 16, 2024
1 parent 044c45d commit 4a5a456
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/update-version-number.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,6 @@ jobs:
run:
runs-on: ubuntu-latest
steps:
- name: Setup tmate session
uses: mxschmitt/action-tmate@v3
- name: 'Update Version number'
run: |
git clone https://${{ secrets.WIKI_ACTION_TOKEN }}@github.com/nanos/FediFetcher.git
Expand All @@ -23,4 +21,6 @@ jobs:
sed -i -E 's/VERSION = "[0-9]+.[0-9]+.[0-9]+"/VERSION = "'$VERSION'"/' find_posts.py
git add find_posts.py
git commit -m "[bot] Bump version to $VERSION"
git push upstream HEAD:main > /dev/null 2>&1
git push origin HEAD:main > /dev/null 2>&1
git tag -f "v$VERSION"
git push -f origin "v$VERSION" > /dev/null 2>&1

0 comments on commit 4a5a456

Please sign in to comment.