Skip to content

Commit

Permalink
ci: integrate next-tag after rebase
Browse files Browse the repository at this point in the history
  • Loading branch information
lowlighter committed May 19, 2024
1 parent a60d6e9 commit 48cecbd
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,35 @@ jobs:
node-version: 22.x
- run: deno task ${{ matrix.package }}:ci


get-new-tag:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
package:
- bundle
- crypto
- diff
- logger
# - orm
- qrcode
- reactive
- testing
- typing
- xml
permissions:
contents: read
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- id: calculate_next_version
uses: ldelarue/git-next-tag@v0
with:
tag-prefix: "${{ matrix.package }}-"
- run: echo "::notice::Generated tag is '${{ steps.calculate_next_version.outputs.tag }}'"

publish:
if: github.event_name == 'push' && github.ref == 'refs/heads/main'
runs-on: ubuntu-latest
Expand Down

0 comments on commit 48cecbd

Please sign in to comment.