setup-nextflow/.github/workflows/publish.yml

21 lines
425 B
YAML
Raw Normal View History

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"
2022-06-13 22:57:28 +00:00
- run: npm i -g @vercel/ncc
- run: npm ci && npm run build
- uses: JasonEtco/build-and-tag-action@v1
env:
GITHUB_TOKEN: ${{ github.token }}