Skip to content

Commit

Permalink
add release.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
2xxbin committed Nov 7, 2024
1 parent 9434677 commit eff4692
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,16 +42,20 @@ jobs:
- name: Upload Github Release
id: upload_github_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
with:
tag_name: ${{ steps.extract_version.outputs.version }}
relase_name: ${{ steps.extract_version.outputs.version }}
release_name: ${{ steps.extract_version.outputs.version }}
body: 'To Be Updated..'

# 5. 리스트 업로드
- name: Upload Github Release Assets
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
with:
upload-url: ${{ steps.upload_github_release.outputs.upload_url }}
upload_url: ${{ steps.upload_github_release.outputs.upload_url }}
assets_path: ./cmpx_reclist_${{ steps.extract_version.outputs.version }}.zip
asset_name: cmpx_reclist_${{ steps.extract_version.outputs.version }}.zip
asset_content_type: application/zip

0 comments on commit eff4692

Please sign in to comment.