Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
mirzakaracic committed Dec 19, 2024
1 parent 25cb1db commit 34f9c13
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/actions/github-release/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ inputs:
artifact-version:
description: ""
required: true
github-token:
description:
required: true

runs:
using: composite
Expand Down Expand Up @@ -38,7 +41,7 @@ runs:
- name: Create GitHub Release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GITHUB_TOKEN: ${{ inputs.github-token }}
with:
tag_name: ${{ inputs.artifact-version }}
release_name: ${{ inputs.artifact-version }}
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/promote.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@ on:
secrets:
CLIENT_BOT_PAT:
required: true
GITHUB_TOKEN:
required: true

jobs:
validate-build:
Expand Down Expand Up @@ -87,3 +89,4 @@ jobs:
uses: ./.github/actions/github-release
with:
artifact-version: ${{ steps.get-artifact-version.outputs.artifact-version }}
github-token: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 34f9c13

Please sign in to comment.