Skip to content

Commit

Permalink
evomi.com
Browse files Browse the repository at this point in the history
  • Loading branch information
evomi-admin committed Jul 14, 2024
1 parent cfdc7ae commit 422a2ef
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions .github/workflows/bump.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,15 @@ jobs:
- name: Checkout repository
uses: actions/checkout@v2

- name: Create an empty commit
env:
GH_TOKEN: ${{ secrets.GH_TOKEN }}
- name: Configure Git and create empty commit
run: |
git config --global user.email "[email protected]"
git config --global user.name "GitHub Action"
git commit --allow-empty -m "evomi.com"
git push "https://${{ env.GH_TOKEN }}@github.com/${{ github.repository }}.git"
- name: Push changes
env:
GH_TOKEN: ${{ secrets.GH_TOKEN }}
run: |
git remote set-url origin "https://x-access-token:${GH_TOKEN}@github.com/${{ github.repository }}.git"
git push origin main

0 comments on commit 422a2ef

Please sign in to comment.