Skip to content

fix: bump;

fix: bump; #6

Workflow file for this run

name: build-publish
on:
push:
branches: [main]
permissions:
contents: read
jobs:
build-publish:
runs-on: ubuntu-latest
permissions:
contents: write
issues: write
pull-requests: write
id-token: write
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: actions/setup-node@v3
with:
node-version: '18.x'
registry-url: 'https://registry.npmjs.org'
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Build
run: yarn build
- name: Verify the integrity of provenance attestations and registry signatures for installed dependencies
run: npm audit signatures
- uses: EndBug/version-check@v2
id: version-check
with:
file-url: https://unpkg.com/@kitzen/data-transfer-objects@latest/package.json
static-checking: localIsNew
- name: Release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NODE_AUTH_TOKEN: ${{ secrets.NPM_PUBLISH_TOKEN }}
run: cd lib && npx semantic-release