diff --git a/.changeset/tame-mails-provide.md b/.changeset/tame-mails-provide.md new file mode 100644 index 000000000..0d386dd74 --- /dev/null +++ b/.changeset/tame-mails-provide.md @@ -0,0 +1,5 @@ +--- +"@marko/runtime-tags": patch +--- + +Attempt 1 to alias tags api to marko@6 diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3a403a57f..b2bcf9949 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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 }}