We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a048455 commit 3d617a4Copy full SHA for 3d617a4
.github/workflows/prepare-tag.yml
@@ -39,13 +39,18 @@ jobs:
39
fi
40
41
changelog:
42
- uses: codesnippetspro/.github-private/.github/workflows/changelog.yml@main
+ runs-on: ubuntu-latest
43
needs: get-version
44
- secrets: inherit
45
- with:
46
- repo: ${{ github.repository }}
47
- branch: ${{ github.ref_name }}
48
- tag: ${{ needs.get-version.outputs.version }}
+ outputs:
+ patch: ${{ steps.changelog.outputs.patch }}
+ steps:
+ - name: Create the changelog
+ id: changelog
49
+ uses: codesnippetspro/.github-private/.github/workflows/changelog.yml@main
50
+ with:
51
+ repo: ${{ github.repository }}
52
+ branch: ${{ github.ref_name }}
53
+ tag: ${{ needs.get-version.outputs.version }}
54
55
git-push:
56
runs-on: ubuntu-latest
0 commit comments