diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml deleted file mode 100644 index a2d773a..0000000 --- a/.github/workflows/publish.yml +++ /dev/null @@ -1,33 +0,0 @@ -name: Publish - -permissions: - contents: write - issues: write - pull-requests: write - -on: - push: - branches: - - "main" - -jobs: - publish: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v3 - - uses: pnpm/action-setup@v2 - with: - version: latest - - uses: actions/setup-node@v3 - with: - node-version: 18 - cache: 'pnpm' - - run: pnpm i - - run: pnpm lint - - run: pnpm build - - - run: npx semantic-release - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - NPM_TOKEN: ${{ secrets.NPM_TOKEN }} - HUSKY: 0