refactor: Update asset_name in GitHub workflow for backend-editor/com… #19
Workflow file for this run
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: Create Release on Tag | |
on: | |
push: | |
tags: | |
- "*" | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
env: | |
ROOT_PATH: ${{ github.workspace }} | |
FRONTEND_EDITOR_PATH: frontend-editor | |
BACKEND_EDITOR_PATH: backend-editor/component-modifier | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Set up Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: "20" | |
- name: Install root dependencies | |
run: npm install | |
- name: Install subfolder dependencies | |
run: | | |
cd ${{ env.FRONTEND_EDITOR_PATH }} && npm install | |
cd ${{ env.ROOT_PATH }} | |
cd ${{ env.BACKEND_EDITOR_PATH }} && npm install | |
- name: Create binary | |
run: node create-build.js | |
- name: Archive Windows binary | |
uses: actions/upload-artifact@v3 | |
with: | |
name: component-modifier-binary-win | |
path: backend-editor/component-modifier/component-modifier-binary-win.exe | |
- name: Archive Linux binary | |
uses: actions/upload-artifact@v3 | |
with: | |
name: component-modifier-binary-linux | |
path: backend-editor/component-modifier/component-modifier-binary-linux | |
- name: Archive Mac binary | |
uses: actions/upload-artifact@v3 | |
with: | |
name: component-modifier-binary-macos | |
path: backend-editor/component-modifier/component-modifier-binary-macos | |
create_release: | |
runs-on: ubuntu-latest | |
needs: build | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: Download build artifact | |
uses: actions/download-artifact@v2 | |
with: | |
name: component-modifier-binary-win | |
path: backend-editor/component-modifier/component-modifier-binary-win.exe | |
- name: Download build artifact | |
uses: actions/download-artifact@v2 | |
with: | |
name: component-modifier-binary-linux | |
path: backend-editor/component-modifier/component-modifier-binary-linux | |
- name: Download build artifact | |
uses: actions/download-artifact@v2 | |
with: | |
name: component-modifier-binary-macos | |
path: backend-editor/component-modifier/component-modifier-binary-macos | |
- name: Create GitHub Release | |
id: create_release | |
uses: actions/create-release@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
tag_name: ${{ github.ref }} | |
release_name: Release ${{ github.ref }} | |
body: | | |
Release for ${{ github.ref }} | |
draft: false | |
prerelease: false | |
- name: 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: backend-editor/component-modifier/component-modifier-binary-win.exe | |
asset_name: component-modifier-binary-win.exe | |
asset_content_type: application/octet-stream | |
- name: 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: backend-editor/component-modifier/component-modifier-binary-linux | |
asset_name: component-modifier-binary-linux | |
asset_content_type: application/octet-stream | |
- name: 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: backend-editor/component-modifier/component-modifier-binary-macos | |
asset_name: component-modifier-binary-macos | |
asset_content_type: application/octet-stream |