Skip to content

Commit

Permalink
Attempt to fix release workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
miklschmidt committed Jul 27, 2024
1 parent 2d118e8 commit 61ee003
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion .github/workflows/Release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ jobs:
add: "./src/version"
default_author: github_actions
message: "Bump version to v${{ github.event.inputs.version }}"
github_token: ${{ secrets.PAT }}
tag: "v${{ github.event.inputs.version }}"
push: true

Expand All @@ -61,6 +62,7 @@ jobs:
with:
default_author: github_actions
commit: --allow-empty
github_token: ${{ secrets.PAT }}
message: "Bump version to v${{ github.event.inputs.version }}"
tag: "v${{ github.event.inputs.version }}"
push: true
Expand All @@ -83,6 +85,7 @@ jobs:
with:
default_author: github_actions
commit: --allow-empty
github_token: ${{ secrets.PAT }}
message: "Bump version to v${{ github.event.inputs.version }}"
tag: "v${{ github.event.inputs.version }}"
push: true
Expand All @@ -105,13 +108,20 @@ jobs:
with:
default_author: github_actions
commit: --allow-empty
github_token: ${{ secrets.PAT }}
message: "Bump version to v${{ github.event.inputs.version }}"
tag: "v${{ github.event.inputs.version }}"
push: true

release:
name: Create Release
# needs: update-master-branch
needs:
[
ratos-push-version-number,
configurator-push-version-number,
configuration-push-version-number,
theme-push-version-number,
]
runs-on: ubuntu-latest
outputs:
id: ${{ steps.create-release.outputs.id }}
Expand Down

0 comments on commit 61ee003

Please sign in to comment.