Skip to content

Latest commit

 

History

History
38 lines (25 loc) · 689 Bytes

File metadata and controls

38 lines (25 loc) · 689 Bytes

workflows

fork from sxzz/workflows

A collection of reusable GitHub Actions workflows and actions for CRXJS projects.

Actions

  • Setup JS: Setup Node.js and install dependencies

Usage

To use a workflow, reference it in your project’s .github/workflows/*.yml:

Example: Release

name: Release

on:
  push:
    tags:
      - 'v*'

jobs:
  release:
    uses: crxjs/workflows/.github/workflows/release.yml@v1
    with:
      publish: true
    permissions:
      contents: write
      id-token: write

Contributing

Contributions and suggestions are welcome! Please open issues or pull requests.