Files
sveltekit-adapters/.github/workflows/ci.yml
Workflow config file is invalid. Please check your config file: yaml: unmarshal errors: line 11: cannot unmarshal !!str `${{ git...` into model.RawConcurrency
2024-02-19 08:16:24 -06:00

42 lines
836 B
YAML

name: Release
on:
push:
branches:
- main
paths:
- 'packages/**'
- '!packages/config-eslint/**'
- '.changeset/**'
concurrency: ${{ github.workflow }}-${{ github.ref }}
env:
CI: true
jobs:
version:
timeout-minutes: 15
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@v3
- name: setup node.js 20
uses: actions/setup-node@v3
with:
node-version: 20
- name: install pnpm
run: npm i pnpm@latest -g
- name: install dependencies
run: pnpm install
- name: create and publish versions
uses: changesets/action@v1
with:
publish: pnpm ci:publish
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.PUBLISH_TOKEN }}