chore: release runtime-tags

This commit is contained in:
dpiercey 2024-12-13 12:24:39 -07:00 committed by Dylan Piercey
parent c14cbea4df
commit 3e660d8602
2 changed files with 7 additions and 2 deletions

View File

@ -0,0 +1,5 @@
---
"@marko/runtime-tags": patch
---
Attempt 1 to alias tags api to marko@6

View File

@ -59,7 +59,7 @@ jobs:
release:
runs-on: ubuntu-latest
needs: [build, test]
if: "${{ github.repository_owner == 'marko-js' && github.event_name == 'push' }}"
if: ${{ github.repository_owner == 'marko-js' && github.event_name == 'push' }}
steps:
- name: Checkout code
uses: actions/checkout@v4
@ -82,7 +82,7 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
- name: Release Alias
if: "${{ contains(steps.changesets.outputs.publishedPackages.*.name, '@marko/runtime-tags') }}"
if: ${{ contains(steps.changesets.outputs.publishedPackages.*.name, '@marko/runtime-tags') }}
run: npm run @ci:release-alias
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}