Skip to content

Commit

Permalink
why was I merging mock lol
Browse files Browse the repository at this point in the history
  • Loading branch information
WriteNaN authored Apr 3, 2024
1 parent 6948545 commit 06cc25b
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
name: Create Release
runs-on: ubuntu-latest
steps:
- name: Checkout code
- name: Checkout Code
uses: actions/checkout@v2

- name: Get Pull Request Body
Expand All @@ -26,26 +26,26 @@ jobs:
- name: Extract Version and Changes
id: extract_version_and_changes
run: |
VERSION_CHANGES=$(bash ./scripts/version.sh "${{ steps.pr_body.outputs.body }}")
VERSION_CHANGES=$(bash ./scripts/version.sh "${{ steps.pr_body.outputs.BODY }}")
echo "Extracted Version and Changes: $VERSION_CHANGES" # Debug message
echo "VERSION_CHANGES=$VERSION_CHANGES" >> $GITHUB_ENV
- name: Setup Bun
- name: Setup Cesium
uses: oven-sh/setup-bun@v1

- name: Install Bun dependencies
- name: Install Bun Dependencies
run: bun install

- name: Export project using Bun
- name: Export Project using Bun
run: bun export

- name: Create Release
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
VERSION_NUMBER: ${{ steps.extract_version_and_changes.outputs.version }}
VERSION_CHANGES: ${{ steps.extract_version_and_changes.outputs.changes }}
VERSION_NUMBER: ${{ steps.extract_version_and_changes.outputs.stdout }}
VERSION_CHANGES: ${{ steps.extract_version_and_changes.outputs.stdout }}
with:
tag_name: ${{ github.event.number }}-${{ env.VERSION_NUMBER }}
release_name: Release ${{ env.VERSION_NUMBER }}
Expand Down

0 comments on commit 06cc25b

Please sign in to comment.