Skip to content

feat!: Make pluto encrypted package storage agnostic. #101

feat!: Make pluto encrypted package storage agnostic.

feat!: Make pluto encrypted package storage agnostic. #101

Workflow file for this run

name: Release
on:
push:
branches:
- master # adjust this to your main development branch if it's not "main"
workflow_dispatch: # this allows for manual triggering
jobs:
release:
runs-on: ubuntu-latest
permissions:
contents: write # to be able to publish a GitHub release
issues: write # to be able to comment on released issues
pull-requests: write # to be able to comment on released pull requests
id-token: write # to enable use of OIDC for npm provenance
steps:
- name: Checkout Code
uses: actions/checkout@v3
with:
submodules: 'recursive'
token: ${{ secrets.PLUTO_GITHUB }}
fetch-depth: 0
ref: ${{ github.event.pull_request.base.ref }}
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: '20' # adjust this to your project's Node.js version
- name: Install Dependencies
env:
GH_TOKEN: ${{ secrets.PLUTO_GITHUB }}
GITHUB_TOKEN: ${{ secrets.PLUTO_GITHUB }}
NPM_TOKEN: ${{ secrets.PLUTO_GITHUB }}
run: |
echo "//npm.pkg.github.com/:_authToken=${{ secrets.PLUTO_GITHUB }}" > .npmrc
echo "@input-output-hk:registry=https://npm.pkg.github.com" >> .npmrc
npm i && npm i @semantic-release/changelog @semantic-release/commit-analyzer @semantic-release/release-notes-generator @semantic-release/npm @semantic-release/git @semantic-release/github -D
- name: Semantic Release
env:
GH_TOKEN: ${{ secrets.PLUTO_GITHUB }}
GITHUB_TOKEN: ${{ secrets.PLUTO_GITHUB }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
run: npm test && npx jest-coverage-badges && npm run docs -- --hideInPageTOC true --hideBreadcrumbs true && cp -r docs/* . && node versioning.cjs && npx semantic-release