Skip to content

⬆️ Oppgraderer date-fns #116

⬆️ Oppgraderer date-fns

⬆️ Oppgraderer date-fns #116

Workflow file for this run

name: "Build and publish common libs"
on:
workflow_dispatch:
push:
branches:
- "main"
env:
"IMAGE": "ghcr.io/${{ github.repository }}:${{ github.sha }}"
jobs:
"build":
name: "build"
runs-on: "ubuntu-latest"
permissions:
contents: write
id-token: write
packages: write
steps:
- uses: "actions/checkout@v2"
- uses: "actions/setup-node@v2"
with:
node-version: "16"
registry-url: "https://npm.pkg.github.com"
- name: "install dependencies"
run: "npm ci"
env:
NODE_AUTH_TOKEN: "${{ secrets.READER_TOKEN }}"
- name: "test packages"
run: "npm run test"
- name: "build storybook"
run: "npm run build-storybook"
- name: "build packages"
run: "npm run build"
- name: "Deploy storybook"
uses: JamesIves/github-pages-deploy-action@v4
with:
folder: storybook-static # The folder the action should deploy.
- name: "Login"
run: |
git config user.email "[email protected]"
git config user.name "Team Innbygger"
git remote set-url origin https://github-actions[bot]:[email protected]/navikt/aap-felles-innbygger.git
git fetch origin
env:
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
- name: "Create a .npmrc file for the github package repository"
uses: "FerLuisxd/create-npmrc@3"
with:
org_name: "navikt"
env:
AUTH_TOKEN: "${{secrets.GITHUB_TOKEN}}"
- name: "Push"
run: |
npm run version:patch
npm run publish:ci
env:
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"