Skip to content

Commit

Permalink
ci: Don't use actions/create-release
Browse files Browse the repository at this point in the history
  • Loading branch information
PaddiM8 committed Aug 25, 2024
1 parent b430321 commit 456a194
Showing 1 changed file with 6 additions and 11 deletions.
17 changes: 6 additions & 11 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -81,23 +81,18 @@ jobs:
runs-on: ubuntu-latest
needs: [linux-binaries, macOS-binaries, windows-binaries]
steps:
- name: Create Release
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ github.ref }}
release_name: ${{ github.ref }}
draft: false
prerelease: false
- uses: actions/checkout@v3
- run: |
mkdir build
- name: Download Artifact
uses: actions/download-artifact@v4
with:
path: build
- name: Upload Assets
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
gh release create ${{ github.ref_name }} *
gh release create ${{ github.ref_name }} build/**/**/*
docs:
runs-on: ubuntu-latest
steps:
Expand Down

0 comments on commit 456a194

Please sign in to comment.