Skip to content

Add renovate.json (#30) #25

Add renovate.json (#30)

Add renovate.json (#30) #25

Workflow file for this run

name: Release
env:
NX_BRANCH: ${{ github.event.number }}
NX_RUN_GROUP: ${{ github.run_id }}
on:
push:
branches:
- main
- beta
- alpha
jobs:
release:
name: Release
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
with:
fetch-depth: 0
- name: Use Node.js 18.x
uses: actions/[email protected]
with:
node-version: 18.x
- uses: actions/cache@v2
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- run: npm ci --cache ~/.npm --prefer-offline
- name: release
run: npm run release
env:
CI: true
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
GH_TOKEN: ${{ secrets.TAIGA_FAMILY_BOT_PAT }}