Skip to content

fix: fix windows endline bug and code viewer helper file ext incorrec… #90

fix: fix windows endline bug and code viewer helper file ext incorrec…

fix: fix windows endline bug and code viewer helper file ext incorrec… #90

Workflow file for this run

name: Release
on:
push:
branches:
- '**'
jobs:
release:
permissions:
id-token: write
contents: write
if: "contains(github.event.head_commit.message, 'chore: release')"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install pnpm
uses: pnpm/action-setup@v3
- name: Use Node.js v20
uses: actions/setup-node@v4
with:
node-version: '20'
registry-url: https://registry.npmjs.org/
cache: pnpm
- run: pnpm install
- name: Lint
run: pnpm run lint
- name: Test
run: pnpm run test
- name: Publish
run: pnpm run publish
env:
VSCE_TOKEN: ${{secrets.VSCE_TOKEN}}
OVSX_TOKEN: ${{secrets.OVSX_TOKEN}}
- name: Git commit
id: commit
run: |
git config --local user.email github-actions[bot]@users.noreply.github.com
git config --local user.name github-actions[bot]
git config --global core.autocrlf true
git config --global core.safecrlf false
git add .
git commit -m "chore: ci build" -a
continue-on-error: true
- name: Git push
uses: ad-m/github-push-action@master
if: ${{ steps.commit.outcome == 'success' }}
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
branch: ${{ github.ref }}
- name: Log
if: ${{ steps.commit.outcome != 'success' }}
run: echo Nothing to commit.