Skip to content

Commit

Permalink
Fixes automatic release
Browse files Browse the repository at this point in the history
  • Loading branch information
jerefrer committed Jan 31, 2025
1 parent 2e3bdd8 commit d13b17a
Showing 1 changed file with 1 addition and 8 deletions.
9 changes: 1 addition & 8 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,6 @@ jobs:

runs-on: ${{ matrix.os }}

outputs:
artifact_paths: ${{ steps.collect_artifacts.join(', ') }}

steps:
- name: Set required env vars (Unix)
if: runner.os == 'macOS'
Expand Down Expand Up @@ -234,16 +231,11 @@ jobs:
- name: Upload artifact
uses: actions/upload-artifact@v4
id: upload
with:
name: ${{ env.ARTIFACT_NAME }}
path: ${{ env.ARTIFACT_PATH }}
compression-level: 0

- name: Collect artifact path
id: collect_artifacts
run: echo "::set-output name=path::${{ steps.upload.outputs.artifact-path }}"

create-release:
needs: build
runs-on: ubuntu-latest
Expand All @@ -254,6 +246,7 @@ jobs:
uses: actions/download-artifact@v4
with:
path: artifacts
merge-multiple: true

- name: Create Release
uses: softprops/action-gh-release@v1
Expand Down

0 comments on commit d13b17a

Please sign in to comment.