proper asset name #5
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Release | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
build: | |
runs-on: windows-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Use Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: '20' | |
- name: Install dependencies | |
run: npm ci | |
- name: Build Windows | |
run: npm run package | |
- name: Zip Windows | |
run: 7z a -tzip fetchcat-win32-x64.zip out/fetchcat-win32-x64 | |
- name: Get version | |
id: package | |
run: echo "::set-output name=version::$(node -p "require('./package.json').version")" | |
- name: Create Release | |
id: create_release | |
uses: actions/create-release@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
tag_name: ${{ steps.package.outputs.version }}.${{ github.run_id }} | |
release_name: Release ${{ steps.package.outputs.version }}.${{ github.run_id }} | |
draft: false | |
prerelease: true | |
- name: Upload Release Asset | |
id: upload-release-asset | |
uses: actions/upload-release-asset@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
upload_url: ${{ steps.create_release.outputs.upload_url }} | |
asset_path: fetchcat-win32-x64.zip | |
asset_name: Fetchcat-Windows.zip | |
asset_content_type: application/octet-stream |