Skip to content

Commit

Permalink
ci: add the ref file in the releases
Browse files Browse the repository at this point in the history
  • Loading branch information
stackmystack committed Dec 8, 2023
1 parent 7fc3403 commit 45d2aac
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -96,3 +96,18 @@ jobs:
./lib/*
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

release-fixed-assets:
needs: [build-ubuntu, build-macos]
runs-on: ubuntu-latest
steps:
- name: Release
uses: softprops/action-gh-release@v1
with:
tag_name: ${{ steps.vars.outputs.sha_short }}
release_name: Release ${{ github.ref }}-${{ steps.vars.outputs.sha_short }}
draft: true
files: |
./ref
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 45d2aac

Please sign in to comment.