Skip to content

Remove Dockerfile and devcontainer.json for Node.js and Python develo… #30

Remove Dockerfile and devcontainer.json for Node.js and Python develo…

Remove Dockerfile and devcontainer.json for Node.js and Python develo… #30

Workflow file for this run

name: Publish NPM Package
on:
push:
branches:
- main
- feature/npm-package
jobs:
publish-npm:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: '14'
registry-url: 'https://npm.pkg.github.com'
scope: '@universityofnicosia'
- run: npm install
working-directory: officegen-api/
- run: npm publish
working-directory: officegen-api/
env:
NODE_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}}