This commit is contained in:
Okinea Dev 2025-02-04 09:01:55 +02:00
parent d12e61bc96
commit ef7e99fb2a
No known key found for this signature in database
GPG Key ID: 07944BC5E01E7B43

View File

@ -1,4 +1,4 @@
name: Compare Bun Version name: ⚖️ Compare Bun Version
description: Compare the version of Bun to a specified version description: Compare the version of Bun to a specified version
inputs: inputs:
@ -10,14 +10,14 @@ inputs:
runs: runs:
using: "composite" using: "composite"
steps: steps:
- name: Get installed Bun version - name: 🛠️ Get installed Bun version
id: bun id: bun
shell: bash shell: bash
run: | run: |
bun --version bun --version
echo "version=$(bun --version)" >> $GITHUB_OUTPUT echo "version=$(bun --version)" >> $GITHUB_OUTPUT
- name: Compare versions - name: ⚖️ Compare versions
shell: bash shell: bash
run: | run: |
if [[ "${{ steps.bun.outputs.version }}" == "${{ inputs.bun-version }}" ]]; then if [[ "${{ steps.bun.outputs.version }}" == "${{ inputs.bun-version }}" ]]; then