Skip to content

Commit

Permalink
github configuration (#3112)
Browse files Browse the repository at this point in the history
  • Loading branch information
bcdurak authored Oct 21, 2024
1 parent fd7ad15 commit 056f979
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/release_finalize.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,16 @@ jobs:
uses: actions/checkout@v4.1.1
with:
ref: main
# Configure Git
- name: Configure git
shell: bash
run: |
git config --global user.email "info@zenml.io"
git config --global user.name "ZenML GmbH"
# Extract the old version
- name: Fetch the old version
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
id: old-version
run: |
LATEST_RELEASE=$(gh release view --json tagName,publishedAt -q '{tag: .tagName, date: .publishedAt}')
Expand Down
8 changes: 8 additions & 0 deletions .github/workflows/release_prepare.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,16 @@ jobs:
uses: actions/checkout@v4.1.1
with:
ref: main
# Configure Git
- name: Configure git
shell: bash
run: |
git config --global user.email "info@zenml.io"
git config --global user.name "ZenML GmbH"
# Extract the old version
- name: Fetch the old version
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
id: old-version
run: |
LATEST_RELEASE=$(gh release view --json tagName,publishedAt -q '{tag: .tagName, date: .publishedAt}')
Expand Down

0 comments on commit 056f979

Please sign in to comment.