Skip to content

fix(deps): update dependency @types/react to v18.2.30 (#466) #796

fix(deps): update dependency @types/react to v18.2.30 (#466)

fix(deps): update dependency @types/react to v18.2.30 (#466) #796

Workflow file for this run

name: release
on:
pull_request:
branches:
- main
paths:
- .github/workflows/release.yaml
- manifest.json
- package.json
push:
branches:
- main
paths:
- .github/workflows/release.yaml
- manifest.json
- package.json
tags:
- '*'
jobs:
zip:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version-file: .node-version
cache: yarn
- run: yarn
- run: yarn build
- run: yarn package
- run: zipinfo build.zip
- if: github.event_name == 'pull_request'
uses: actions/upload-artifact@v3
with:
name: build.zip
path: build.zip
- if: github.ref_type == 'tag'
run: gh release upload "${{ github.ref_name }}" build.zip
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}