Skip to content

Commit

Permalink
ci: add release preview action
Browse files Browse the repository at this point in the history
  • Loading branch information
huwshimi committed Aug 29, 2024
1 parent e67ae33 commit e5ea6a7
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/release-preview.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: Preview release
on:
pull_request:
branches:
- main

jobs:
release:
name: Preview release
runs-on: ubuntu-latest
outputs:
new-release-version: ${{ steps.dry-run.outputs.new-release-version }}
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: "lts/*"
- name: Install dependencies
run: yarn install
- name: Preview release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
id: dry-run
run: |
OUTPUT=$(unset GITHUB_ACTIONS && npx semantic-release --dry-run --no-ci --branches "$GITHUB_HEAD_REF")
VERSION=$(echo "$OUTPUT" | grep -o "The next release version is [0-9]*\.[0-9]*\.[0-9]*" | awk '{print $6}')
echo "VERSION=$VERSION" >> "$GITHUB_OUTPUT"
- name: Next version
run: echo "The next version will be ${{ steps.dry-ryb.outputs.new-release-version }}"

0 comments on commit e5ea6a7

Please sign in to comment.