Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions .github/workflows/monthly-patch-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,14 +41,14 @@ jobs:
echo "new-tag=${NEW_TAG}" >> $GITHUB_OUTPUT
echo "New version: ${NEW_TAG}"

- name: Configure Git
run: |
git config user.name "github-actions[bot]"
git config user.email "github-actions[bot]@users.noreply.github.com"

- name: Create and push tag
run: |
NEW_TAG=${{ steps.new-version.outputs.new-tag }}
git tag -a "$NEW_TAG" -m "Automated monthly patch release: $NEW_TAG"
git push origin "$NEW_TAG"
git config --local user.email "info@theiotstudio.com"
git config --local user.name "tis-service-user"
git tag -a "$NEW_TAG" -m "Automated monthly patch release: ${{ steps.new-version.outputs.new-tag }}"

- name: Push changes
uses: ad-m/github-push-action@v1
with:
github_token: ${{ secrets.PRIVATE_PAT_TOKEN }}
tags: true
Loading