Skip to content

fix(deps): update renovate docker tag to v43.46.0 (#995) #845

fix(deps): update renovate docker tag to v43.46.0 (#995)

fix(deps): update renovate docker tag to v43.46.0 (#995) #845

Workflow file for this run

name: Release workspace
on:
push:
branches:
- main
permissions:
id-token: write # Required for OIDC
contents: write
concurrency:
group: release
jobs:
release:
name: Release changesets
runs-on: ubuntu-24.04
env:
CI: true
NODE_OPTIONS: --max-old-space-size=4096
steps:
- name: Checkout
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: Enable Corepack
run: corepack enable
- name: Set up Node
uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v6.2.0
with:
node-version: 24
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@6a0a831ff30acef54f2c6aa1cbbc1096b066edaf # v1.7.0
with:
title: Version Packages
version: yarn changeset version
# https://github.com/changesets/action/pull/271/files#diff-b335630551682c19a781afebcf4d07bf978fb1f8ac04c6bf87428ed5106870f5R162
publish: yarn changeset tag
env:
GITHUB_TOKEN: ${{ secrets.PA_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"