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

23 lines
498 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-11-13 22:05:17 +00:00
- run: npm ci
2022-11-13 22:50:40 +00:00
- run: npm run build
2022-11-13 22:11:09 +00:00
- run: npm run package
- run: sed -i 's%lib/src/main.js%dist/index.js%' package.json
- uses: JasonEtco/build-and-tag-action@v1
env:
GITHUB_TOKEN: ${{ github.token }}