Skip to content

fix: do not use private keys in optimistic mode #1040

fix: do not use private keys in optimistic mode

fix: do not use private keys in optimistic mode #1040

Workflow file for this run

name: Release
on:
push:
branches:
- "main"
- "beta"
- "*.x"
workflow_dispatch:
env:
HUSKY: 0
CI: true
jobs:
release:
runs-on: ubuntu-latest
permissions:
contents: write
issues: write
id-token: write
packages: write
steps:
- uses: actions/checkout@v6
- uses: pnpm/action-setup@v5
- uses: actions/setup-node@v6
with:
node-version-file: ".nvmrc"
cache: "pnpm"
- name: Install node modules
run: pnpm install --frozen-lockfile
- name: Login to GitHub Container Registry
uses: docker/login-action@v4
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ github.token }}
- name: Semantic Release
uses: cycjimmy/semantic-release-action@v6
with:
extra_plugins: |
@codedependant/semantic-release-docker
env:
GITHUB_TOKEN: ${{ github.token }}