Update GitHub Actions workflow to download artifacts and upload relea… #12
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: Build and Release | |
on: | |
push: | |
tags: | |
- 'v*.*.*' | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest, windows-latest, macos-latest] | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Set up Node.js | |
uses: actions/setup-node@v2 | |
with: | |
node-version: '18' | |
- name: Install dependencies | |
run: npm install | |
- name: Build the app | |
run: npm run make | |
- name: List output directory contents | |
run: ls -R out/make | |
- name: Upload Build Artifacts | |
uses: actions/upload-artifact@v2 | |
with: | |
name: comet-${{ matrix.os }} | |
path: out/make/**/*.* | |
release: | |
needs: build | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Download Artifacts | |
uses: actions/download-artifact@v2 | |
with: | |
name: comet-ubuntu-latest | |
path: ./artifacts/ubuntu | |
- name: Download Artifacts | |
uses: actions/download-artifact@v2 | |
with: | |
name: comet-windows-latest | |
path: ./artifacts/windows | |
- name: Download Artifacts | |
uses: actions/download-artifact@v2 | |
with: | |
name: comet-macos-latest | |
path: ./artifacts/macos | |
- name: Create Release | |
id: create_release | |
uses: actions/create-release@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }} | |
with: | |
tag_name: ${{ github.ref }} | |
release_name: ${{ github.ref }} | |
draft: false | |
prerelease: false | |
- name: Upload Release Asset for Ubuntu | |
uses: actions/upload-release-asset@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }} | |
with: | |
upload_url: ${{ steps.create_release.outputs.upload_url }} | |
asset_path: ./artifacts/ubuntu/**/*.* | |
asset_name: comet-ubuntu-${{ github.sha }}.zip | |
asset_content_type: application/zip | |
- name: Upload Release Asset for Windows | |
uses: actions/upload-release-asset@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }} | |
with: | |
upload_url: ${{ steps.create_release.outputs.upload_url }} | |
asset_path: ./artifacts/windows/**/*.* | |
asset_name: comet-windows-${{ github.sha }}.zip | |
asset_content_type: application/zip | |
- name: Upload Release Asset for macOS | |
uses: actions/upload-release-asset@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }} | |
with: | |
upload_url: ${{ steps.create_release.outputs.upload_url }} | |
asset_path: ./artifacts/macos/**/*.* | |
asset_name: comet-macos-${{ github.sha }}.zip | |
asset_content_type: application/zip |