Skip to content

Commit

Permalink
ci: fix release workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
fhussonnois committed Feb 3, 2025
1 parent 1ed882e commit 41149a8
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/release-plugins.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,13 @@ jobs:
with:
fetch-depth: 0

# Checkout GitHub Actions
- uses: actions/checkout@v4
with:
repository: kestra-io/actions
path: actions
ref: main

# Setup build
- uses: ./actions/.github/actions/setup-build
id: build
Expand All @@ -42,6 +49,11 @@ jobs:
with:
plugin-version: 'LATEST'

- name: 'Configure Git'
run: |
git config --global user.email "41898282+github-actions[bot]@users.noreply.github.com"
git config --global user.name "github-actions[bot]"
# Execute
- name: Run Gradle Release
if: ${{ github.event.inputs.dryRun == 'false' }}
Expand Down
12 changes: 12 additions & 0 deletions .github/workflows/tag-plugins.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,13 @@ jobs:
with:
fetch-depth: 0

# Checkout GitHub Actions
- uses: actions/checkout@v4
with:
repository: kestra-io/actions
path: actions
ref: main

# Setup build
- uses: ./actions/.github/actions/setup-build
id: build
Expand All @@ -38,6 +45,11 @@ jobs:
with:
plugin-version: 'LATEST'

- name: 'Configure Git'
run: |
git config --global user.email "41898282+github-actions[bot]@users.noreply.github.com"
git config --global user.name "github-actions[bot]"
# Execute
- name: Set Version and Tag Plugins
if: ${{ github.event.inputs.dryRun == 'false' }}
Expand Down

0 comments on commit 41149a8

Please sign in to comment.