* chore(tests): update deps Signed-off-by: braks <78412429+bcakmakoglu@users.noreply.github.com> * chore(workflows): update actions to latest Signed-off-by: braks <78412429+bcakmakoglu@users.noreply.github.com> * chore: update pnpm-lock.yaml Signed-off-by: braks <78412429+bcakmakoglu@users.noreply.github.com> * chore(examples,vite): update deps Signed-off-by: braks <78412429+bcakmakoglu@users.noreply.github.com> * chore(examples,nuxt): update deps Signed-off-by: braks <78412429+bcakmakoglu@users.noreply.github.com> * chore(examples,quasar): update deps Signed-off-by: braks <78412429+bcakmakoglu@users.noreply.github.com> * chore(examples,docs): update deps Signed-off-by: braks <78412429+bcakmakoglu@users.noreply.github.com> --------- Signed-off-by: braks <78412429+bcakmakoglu@users.noreply.github.com>
52 lines
1.2 KiB
YAML
52 lines
1.2 KiB
YAML
name: Publish
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- next-release
|
|
- release/*
|
|
env:
|
|
CI: true
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.head_ref || github.ref_name }}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
version:
|
|
timeout-minutes: 15
|
|
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
strategy:
|
|
matrix:
|
|
os: [ubuntu-latest]
|
|
node: [20]
|
|
|
|
steps:
|
|
- name: Checkout 🛎
|
|
uses: actions/checkout@master
|
|
|
|
- name: Setup node env 🏗
|
|
uses: actions/setup-node@v4
|
|
with:
|
|
node-version: ${{ matrix.node }}
|
|
check-latest: true
|
|
|
|
#- name: Setup npmrc 🏗
|
|
# run: echo "\n//registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }}" >> .npmrc
|
|
|
|
- name: Install Dependencies 👨🏻💻
|
|
uses: ./.github/actions/install-dependencies
|
|
|
|
- name: Bump versions 🏷 and Publish 🚀
|
|
uses: changesets/action@v1
|
|
with:
|
|
version: pnpm ci:version
|
|
commit: "chore: bump versions"
|
|
title: "chore: bump versions"
|
|
# manual publish currently
|
|
# publish: pnpm ci:publish
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|