Skip to content

Commit

Permalink
add git credentials for bot
Browse files Browse the repository at this point in the history
  • Loading branch information
Gogoshika-ga committed Oct 18, 2024
1 parent 13f2a13 commit fde188b
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion .github/workflows/create_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,16 @@ jobs:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v3
with:
fetch-depth: 0 # Fetch all history for tags and commits

- name: Set up Git credentials
run: |
git config user.name "ga-sdk-release[bot]"
git config user.email "ga-sdk-release[bot]@noreply.gameanalytics.com"
- name: Push tag ${{ inputs.tag_name }}
run: |
git tag ${{ inputs.tag_name }}
Expand All @@ -42,4 +52,4 @@ jobs:
name: Release GA-CPP-SDK ${{ inputs.tag_name }}
generate_release_notes: true
make_latest: true
files: ./release-artifacts/*
files: ./release-artifacts/*

0 comments on commit fde188b

Please sign in to comment.