Release Snapshot #8
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
# https://github.com/anthonyhastings/turborepo-design-system | |
name: Release Snapshot | |
on: | |
workflow_dispatch: | |
jobs: | |
snapshot: | |
name: Snapshot Release | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ./.github/actions/gh-setup | |
- name: Create Snapshot Release | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | |
run: | | |
yarn run version-packages --snapshot "${{ github.ref_name }}" | |
echo '---' | |
echo 'Detected Changes:' | |
git diff | |
echo '---' | |
yarn run publish --tag "${{ github.ref_name }}" --no-git-tag |