Skip to content

chore(deps): update dependency eslint to v9.15.0 #1906

chore(deps): update dependency eslint to v9.15.0

chore(deps): update dependency eslint to v9.15.0 #1906

Workflow file for this run

name: release
on:
pull_request:
branches:
- main
paths:
- .github/workflows/release.yaml
- manifest.json
- package.json
- pnpm-lock.yaml
push:
branches:
- main
paths:
- .github/workflows/release.yaml
- manifest.json
- package.json
- pnpm-lock.yaml
tags:
- '*'
jobs:
zip:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4.1.0
with:
node-version-file: .node-version
- run: corepack enable pnpm
- run: pnpm i
- run: pnpm run build
- run: sed -i -e "s|0.0.0.0|$GITHUB_REF_NAME|" dist/manifest.json
- run: cd dist && zip -r ../dist.zip .
- run: zipinfo dist.zip
- if: github.event_name == 'pull_request'
uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3
with:
name: dist.zip
path: dist.zip
- if: github.ref_type == 'tag'
run: gh release upload "${{ github.ref_name }}" dist.zip
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}