Skip to content

v0.7.6

v0.7.6 #17

Workflow file for this run

# This workflow is triggered when a GitHub release is created.
# It can also be run manually to re-publish to NPM in case it failed for some reason.
# You can run this workflow by navigating to https://www.github.com/gitpod-io/gitpod-sdk-typescript/actions/workflows/publish-npm.yml
name: Publish NPM
permissions:
id-token: write # Required for OIDC
contents: read
on:
workflow_dispatch:
release:
types: [published]
jobs:
publish:
name: publish
runs-on: ubuntu-latest
permissions:
contents: read
id-token: write
steps:
- uses: actions/checkout@v4
- name: Set up Node
uses: actions/setup-node@v4
with:
node-version: '20'
always-auth: true
registry-url: 'https://registry.npmjs.org'
- name: Install dependencies
run: |
yarn install --frozen-lockfile --ignore-scripts
- name: Publish to NPM
run: |
bash ./bin/publish-npm