This repository was archived by the owner on Jun 2, 2025. It is now read-only.
Test pipeline again #2
This file contains hidden or 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: | |
push: | |
branches: | |
- master | |
jobs: | |
build: | |
runs-on: windows-latest | |
steps: | |
- name: Checkout Installer | |
uses: actions/checkout@v3 | |
with: | |
submodules: true | |
- name: Setup Ninja | |
uses: seanmiddleditch/gha-setup-ninja@master | |
- name: Setup Clang | |
uses: egor-tensin/setup-clang@v1 | |
with: | |
version: 18 | |
platform: x64 | |
- name: Setup External Dependencies | |
run: | | |
.\install_dependencies.ps1 | |
- name: Build Installer | |
run: | | |
.\build_as_ci.ps1 | |
- name: Upload Installer Artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: installer | |
path: build/ci-release/gelly-installer.zip |