mirror of
https://github.com/MillironX/setup-nextflow.git
synced 2024-11-22 09:49:56 +00:00
1b07a3f172
npm run build works now without global install
19 lines
391 B
YAML
19 lines
391 B
YAML
name: Publish
|
|
|
|
on:
|
|
release:
|
|
types: [published, edited]
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- uses: actions/setup-node@v3
|
|
with:
|
|
node-version: 16
|
|
cache: "npm"
|
|
- run: npm ci && npm run build
|
|
- uses: JasonEtco/build-and-tag-action@v1
|
|
env:
|
|
GITHUB_TOKEN: ${{ github.token }}
|