Skip to content

Commit

Permalink
chore: actual preid
Browse files Browse the repository at this point in the history
  • Loading branch information
pranavosu committed Jan 10, 2025
1 parent 058b9c8 commit c868501
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/push-preid-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:
push:
branches:
# Change this to your branch name where "example-preid" corresponds to the preid you want your changes released on
- feat/example-preid-branch/main
- 'fix/crypto-dep'

jobs:
e2e:
Expand All @@ -24,7 +24,7 @@ jobs:
- id: output_preid
run: echo "preid=$(echo $BRANCH | tr -cd '[:alnum:]_\-/.' | cut -d \/ -f 2)" >> $GITHUB_OUTPUT
outputs:
preid: 'fix/crypto-dep'
preid: ${{ steps.output_preid.outputs.preid }}

preid-release:
needs:
Expand All @@ -35,4 +35,4 @@ jobs:
# The preid should be detected from the branch name recommending feat/{PREID}/whatever as branch naming pattern
# if your branch doesn't follow this pattern, you can override it here for your branch.
with:
preid: ${{ needs.parse-preid.outputs.preid }}
preid: 'crypto-dep-fix'

0 comments on commit c868501

Please sign in to comment.