Skip to content

fjerner spesiell håndtering av orgnr jf diskusjon på slack (#132) #383

fjerner spesiell håndtering av orgnr jf diskusjon på slack (#132)

fjerner spesiell håndtering av orgnr jf diskusjon på slack (#132) #383

Workflow file for this run

name: test, build, publish
on:
- push
- workflow_dispatch
jobs:
ci:
runs-on: ubuntu-latest
permissions:
packages: write
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v3
with:
node-version: '16'
registry-url: 'https://registry.npmjs.org'
cache: 'npm'
- name: install dependencies
run: npm ci
- name: build
run: npm run build
- if: github.ref == 'refs/heads/master'
name: publish on npmjs.org
run: |
if jq --null-input --exit-status \
--argjson local "$(jq .version package.json)" \
--argjson published "$(npm view --json @navikt/bedriftsmeny versions)" \
'$published | map(. == $local) | any'
then
echo "Version already published. Nothing to do."
else
npm publish --access public
fi
env:
NODE_AUTH_TOKEN: ${{ secrets.NODE_AUTH_TOKEN }}
- uses: actions/setup-node@v3
with:
node-version: '16'
registry-url: 'https://npm.pkg.github.com'
- if: github.ref == 'refs/heads/master'
name: publish on github
run: |
if jq --null-input --exit-status \
--argjson local "$(jq .version package.json)" \
--argjson published "$(npm view --json @navikt/bedriftsmeny versions)" \
'$published | map(. == $local) | any'
then
echo "Version already published. Nothing to do."
else
npm publish --access public
fi
env:
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}