Skip to content

Commit

Permalink
Adds changeset version call for snapshots
Browse files Browse the repository at this point in the history
  • Loading branch information
tsov committed Sep 25, 2023
1 parent 3ad06c9 commit eaf5c0f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/snapit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -101,9 +101,9 @@ jobs:
script: |
const execa = require('execa')
console.log('test')
await execa.command('yarn changeset version --snapshot snapshot-release', { stdio: 'inherit' })
const releaseProcess = execa.command('yarn release -- --no-git-tags --snapshot --tag snapshot-release')
const releaseProcess = execa.command('yarn release --no-git-tags --snapshot --tag snapshot-release')
releaseProcess.stdout.pipe(process.stdout)
const {stdout} = await releaseProcess
Expand Down

0 comments on commit eaf5c0f

Please sign in to comment.