Skip to content

workflows: Set tuf-conformance to run weekly (#937) #202

workflows: Set tuf-conformance to run weekly (#937)

workflows: Set tuf-conformance to run weekly (#937) #202

Workflow file for this run

name: Release
on:
push:
branches:
- main
permissions:
contents: read
jobs:
release:
name: Release packages
runs-on: ubuntu-latest
permissions:
contents: write
pull-requests: write
id-token: write
steps:
- name: Checkout source
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v3
- name: Setup node
uses: actions/setup-node@395ad3262231945c25e8478fd5baf05154b1d79f # v3
with:
node-version: 22
registry-url: 'https://registry.npmjs.org'
cache: npm
- name: Install npm w/ OIDC support
run: |
npm install -g npm@^11.5.0
- name: Install dependencies
run: npm ci
- name: Create Release Pull Request
uses: changesets/action@e0145edc7d9d8679003495b11f87bd8ef63c0cba # v1.5.3
with:
publish: npm run release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}