Skip to content

Commit

Permalink
release #100
Browse files Browse the repository at this point in the history
  • Loading branch information
yousefvand committed Nov 30, 2024
1 parent 6407131 commit 6a7d41b
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions .github/workflows/cmake-multi-platform.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ on:
jobs:
build:
runs-on: ${{ matrix.os }}

strategy:
fail-fast: false
matrix:
Expand Down Expand Up @@ -59,7 +58,7 @@ jobs:
if: matrix.os == 'ubuntu-latest'
uses: actions/upload-artifact@v3
with:
name: Notepad--_ubuntu
name: ubuntu-artifact
path: "${{ github.workspace }}/artifacts/Notepad--_ubuntu.tar.gz"

# macOS Section
Expand Down Expand Up @@ -92,7 +91,7 @@ jobs:
if: matrix.os == 'macos-latest'
uses: actions/upload-artifact@v3
with:
name: Notepad--_macos
name: macos-artifact
path: "${{ github.workspace }}/artifacts/Notepad--_macos.zip"

# Windows Section
Expand Down Expand Up @@ -141,15 +140,17 @@ jobs:
if: matrix.os == 'windows-latest'
uses: actions/upload-artifact@v3
with:
name: Notepad--_windows
name: windows-artifact
path: "${{ github.workspace }}\\artifacts\\Notepad--_windows.zip"

release:
runs-on: ubuntu-latest
needs: build
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Download Artifacts
uses: actions/download-artifact@v3
with:
path: artifacts

- name: Generate Tag Name
id: tag_name
Expand Down

0 comments on commit 6a7d41b

Please sign in to comment.