Skip to content

v2.5.4

v2.5.4 #41

Workflow file for this run

name: Publish to NPM
on:
release:
types: [published]
jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: '12.x'
registry-url: 'https://registry.npmjs.org'
- name: Build
run: cd /home/runner/work/MeteoalarmCard/MeteoalarmCard && npm install && npm run build
- run: npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}