fix(deps): update dependency @types/dockerode to v3.3.33 (#533) #425
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Release workspace | |
on: | |
push: | |
branches: | |
- main | |
concurrency: | |
group: release | |
jobs: | |
release: | |
name: Release changesets | |
runs-on: ubuntu-latest | |
env: | |
CI: true | |
NODE_OPTIONS: --max-old-space-size=4096 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 | |
- name: Enable Corepack | |
run: corepack enable | |
- name: Set up Node | |
uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4 | |
with: | |
node-version: 20 | |
registry-url: https://registry.npmjs.org/ # Needed for auth | |
cache: 'yarn' | |
- name: yarn install | |
run: yarn install --immutable | |
- name: Compile TypeScript | |
run: yarn tsc:full | |
- name: Build all packages | |
run: yarn build:all | |
- name: Publish packages | |
id: changesets | |
uses: changesets/action@v1 | |
with: | |
title: Version Packages | |
version: yarn changeset version | |
env: | |
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | |
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Publish | |
if: steps.changesets.outputs.hasChangesets == 'false' | |
# --tolerate-republish do not attempt a republishing as it suggests but rather skips if the version already exists | |
run: "yarn workspaces foreach --all --include 'plugins/*' npm publish --access public --tolerate-republish" | |
env: | |
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | |
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} | |
YARN_NPM_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} |